From 8a78337ea4dcb0b154bd1c754218ca01c8f9015d Mon Sep 17 00:00:00 2001 From: Paul Buetow Date: Sun, 8 Mar 2026 18:17:20 +0200 Subject: Update content for html --- .../2026-01-01-using-supernote-nomad-offline.html | 62 ++++++++++++---------- 1 file changed, 34 insertions(+), 28 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 0c1db515..7838526a 100644 --- a/gemfeed/2026-01-01-using-supernote-nomad-offline.html +++ b/gemfeed/2026-01-01-using-supernote-nomad-offline.html @@ -2,12 +2,17 @@ + Using Supernote Nomad offline - + +
+
+
+

Home | Markdown | Gemini

@@ -79,32 +84,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:
@@ -149,11 +154,12 @@ copy
Back to the main site
+ -- cgit v1.2.3