From 4d0bd914e7c1ee65f4036e60149a7b891906a5d3 Mon Sep 17 00:00:00 2001 From: George Abbott Date: Tue, 31 Oct 2023 17:54:07 +0000 Subject: Commit all to date. --- sys/add-bookmark | 34 ++++++++++++++++++++++++++++++++++ 1 file changed, 34 insertions(+) create mode 100755 sys/add-bookmark (limited to 'sys/add-bookmark') 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!" "$bkmk already bookmarked!" +else + echo "$bkmk # $comment" >> "$file" + bmnotify-send "Bookmark Added!" "$bkmk added and tagged as $comment." +fi + -- cgit v1.2.1