aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMatthew Lemon <y@yulqen.org>2023-03-16 17:13:26 +0000
committerMatthew Lemon <y@yulqen.org>2023-03-16 17:13:26 +0000
commit281ffa2e971c7607b998394b49eedd1a9b38fe1b (patch)
tree6e72139962bddcbe5d4ae608146e16ed29e5b102
parent56a5daa4e30364b9e75aa6a9e005cdd02257db51 (diff)
new bash script to replace tjclip fish funtion which relied on _tj
-rwxr-xr-xtjclip-alternate.sh21
1 files changed, 21 insertions, 0 deletions
diff --git a/tjclip-alternate.sh b/tjclip-alternate.sh
new file mode 100755
index 0000000..501edfe
--- /dev/null
+++ b/tjclip-alternate.sh
@@ -0,0 +1,21 @@
+#!/usr/bin/env bash
+
+# this script replaces tjclip fish function which relied on _tj.
+
+# Our target file
+TODAY_JOURNAL=~/Documents/Notes/journal/$(date +\%Y-\%m-\%d).md
+URL="$(xclip -o clipboard clipboard)"
+
+# Test whether it already exisits or not
+if [[ -a $TODAY_JOURNAL ]]
+then
+ JLINE="- $(date +'%H:%M'): $1"
+ echo "$JLINE: $URL." >> "$TODAY_JOURNAL"
+else
+ touch "$TODAY_JOURNAL"
+ header_date="$(date +'%A %d %b %Y')"
+ { echo -e "# $header_date\n"
+ } >> "$TODAY_JOURNAL"
+ JLINE="- $(date +'%H:%M'): $1"
+ echo "$JLINE: $URL." >> "$TODAY_JOURNAL"
+fi