summaryrefslogtreecommitdiff
path: root/README.md
diff options
context:
space:
mode:
authorPaul Buetow <paul@buetow.org>2022-06-02 10:57:12 +0100
committerPaul Buetow <paul@buetow.org>2022-06-02 10:57:12 +0100
commit418b5dad205c70ff232d084d170853f1db3081ce (patch)
treebb02e2227ec464196762a34050841d5b9e5a2965 /README.md
initial random journal page
Diffstat (limited to 'README.md')
-rw-r--r--README.md26
1 files changed, 26 insertions, 0 deletions
diff --git a/README.md b/README.md
new file mode 100644
index 0000000..65be27d
--- /dev/null
+++ b/README.md
@@ -0,0 +1,26 @@
+# Read a random journal
+
+This is a quick and dirty script which I use personally to grab a random PDF file (a scanned version of one of my bullet journals)and to extract a random set of pages from it in order to reflect/read what was happening in the past. This also includes various notes of books I have read and random ideas I wrote down and my want to reconsider.
+
+## Requirements
+
+For Fedora Linux:
+
+```
+# for (obviously) qpdf
+sudo dnf install qpdf
+# for pdfinfo
+sudo dnf install poppler-utils
+```
+
+## Usage
+
+Simply configure the journal path and the PDF vewer in the script and run: `./randomjournalpage.sh`
+
+## Testing
+
+There is no real testing done. It's a pretty simple script. However, the script passes the following ShellCheck command:
+
+```
+shellcheck randomjournalpage.sh --exclude SC2155
+```