summaryrefslogtreecommitdiff
path: root/sys/add-bookmark
diff options
context:
space:
mode:
Diffstat (limited to 'sys/add-bookmark')
-rwxr-xr-xsys/add-bookmark34
1 files changed, 34 insertions, 0 deletions
diff --git a/sys/add-bookmark b/sys/add-bookmark
new file mode 100755
index 0000000..cf37c7f
--- /dev/null
+++ b/sys/add-bookmark
@@ -0,0 +1,34 @@
+#!/bin/sh
+# Adds a bookmark.
+# Either grabs xclip, or requests input of the string to bookmark.
+# If passed --ask (-a), then ignore the clipboard and prompt the user what to
+# bookmark.
+
+bkmk="$(xclip -o -selection primary)"
+alias bmnotify-send="notify-send -i $HOME/.local/share/img/bm-icon.png"
+
+if isflag '-a' "$@" ; then
+ bkmk="$(dmenu -p "Enter bookmark: " < /dev/null)"
+fi
+
+
+[ -z "$bkmk" ] && bmnotify-send "Did not bookmark." "Nothing selected to bookmark!" && exit
+
+comment="$(dmenu -p "Add comment ($bkmk): " < /dev/null)"
+[ -z "$comment" ] && exit
+if [ "$ORGD_KT_PATH" = "" ]; then
+ notify-send "ORGD_KT_PATH empty." "Using $HOME/docs/wr/orgd/kt as fallback."
+ file="$HOME/docs/wr/orgd/kt/bookmark"
+else
+ file="$ORGD_KT_PATH/bookmark"
+fi
+
+stripped="$(strip-comments "$file")"
+
+if echo "$stripped" | grep -q "^$bkmk[/ \t]*$"; then
+ bmnotify-send "No!" "<i>$bkmk</i> already bookmarked!"
+else
+ echo "$bkmk # $comment" >> "$file"
+ bmnotify-send "Bookmark Added!" "<i>$bkmk</i> added and tagged as <i>$comment</i>."
+fi
+