blob: 321aa10c2b643ac2edeec536c46682592d5ecae7 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
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."
|