diff options
author | George Abbott <george@gabbott.dev> | 2023-10-31 17:54:07 +0000 |
---|---|---|
committer | George Abbott <george@gabbott.dev> | 2023-10-31 17:54:07 +0000 |
commit | 4d0bd914e7c1ee65f4036e60149a7b891906a5d3 (patch) | |
tree | c2a6751823e064e003cd4f6166df07bfc106d7eb /sys/add-bookmark |
Commit all to date.
Diffstat (limited to 'sys/add-bookmark')
-rwxr-xr-x | sys/add-bookmark | 34 |
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 + |