From ee75979b5d94ae18f930ff91e5b2d51cd554b60d Mon Sep 17 00:00:00 2001 From: Paul Buetow Date: Mon, 9 Mar 2026 22:45:54 +0200 Subject: Update content for html --- .../2026-01-01-using-supernote-nomad-offline.html | 59 ++++++++++------------ 1 file changed, 27 insertions(+), 32 deletions(-) (limited to 'gemfeed/2026-01-01-using-supernote-nomad-offline.html') diff --git a/gemfeed/2026-01-01-using-supernote-nomad-offline.html b/gemfeed/2026-01-01-using-supernote-nomad-offline.html index 96647714..0c1db515 100644 --- a/gemfeed/2026-01-01-using-supernote-nomad-offline.html +++ b/gemfeed/2026-01-01-using-supernote-nomad-offline.html @@ -2,17 +2,12 @@ - Using Supernote Nomad offline -
-
-
-

Home | Markdown | Gemini

@@ -84,32 +79,32 @@ by Lorenzo Bettini http://www.lorenzobettini.it http://www.gnu.org/software/src-highlite --> -
#!/usr/bin/env bash
+
#!/usr/bin/env bash
 
-convert () {
-  find . -name \*.note \
-    | while read -r note; do
-        echo supernote-tool convert -a -t pdf "$note" "${note/.note/.pdf}"
-        supernote-tool convert -a -t pdf "$note" "${note/.note/.pdf}.tmp"
-        mv "${note/.note/.pdf}.tmp" "${note/.note/.pdf}"
-        du -hs "$note" "${note/.note/.pdf}"
-        echo
-      done
-}
+convert () {
+  find . -name \*.note \
+    | while read -r note; do
+        echo supernote-tool convert -a -t pdf "$note" "${note/.note/.pdf}"
+        supernote-tool convert -a -t pdf "$note" "${note/.note/.pdf}.tmp"
+        mv "${note/.note/.pdf}.tmp" "${note/.note/.pdf}"
+        du -hs "$note" "${note/.note/.pdf}"
+        echo
+      done
+}
 
-# Make the PDFs available on my Phone as well
-copy () {
-  if [ ! -d ~/Documents/Supernote ]; then
-    echo "Directory ~/Documents/Supernote does not exist, skipping"
-    exit 1
-  fi
+# Make the PDFs available on my Phone as well
+copy () {
+  if [ ! -d ~/Documents/Supernote ]; then
+    echo "Directory ~/Documents/Supernote does not exist, skipping"
+    exit 1
+  fi
 
-  rsync -delete -av --include='*/' --include='*.pdf' --exclude='*' . ~/Documents/Supernote/
-  echo This was copied from $(pwd) so dont edit manually >~/Documents/Supernote/README.txt
-}
+  rsync -delete -av --include='*/' --include='*.pdf' --exclude='*' . ~/Documents/Supernote/
+  echo This was copied from $(pwd) so dont edit manually >~/Documents/Supernote/README.txt
+}
 
-convert
-copy
+convert
+copy
 

This script does two things:
@@ -154,11 +149,11 @@ http://www.gnu.org/software/src-highlite -->
Back to the main site
-- cgit v1.2.3