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/get-bookmark |
Commit all to date.
Diffstat (limited to 'sys/get-bookmark')
-rwxr-xr-x | sys/get-bookmark | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/sys/get-bookmark b/sys/get-bookmark new file mode 100755 index 0000000..321aa10 --- /dev/null +++ b/sys/get-bookmark @@ -0,0 +1,17 @@ +#!/bin/sh + +alias bmnotify-send="notify-send -i $HOME/.local/share/img/bm-icon.png" + +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 + +# This regex matches <space tab carriage-return linefeed> though it is hard to +# read. +# I wonder if it might be worth cutting on a different character than space? +# If a space is present in the bookmark then it will bug out. +xdotool type --delay 2 "$(grep -v '^#\|^[ \r\n]*$' $file | dmenu -i -l 50 | cut -d' ' -f1)" +bmnotify-send "Done!" "Text fully pasted." |