blob: b064470376a6b8b00e6b50e1142fd36f3e818580 (
plain)
1
2
3
4
5
6
7
8
9
|
#!/bin/sh
bookmark_file=~/.cache/bookmarks
if [ -z "$1" ]
then
choice=$(cat $bookmark_file | dmenu -p 'Bookmarks' -l 50 -i | cut -d' ' -f1)
[ -z "$choice" ] && exit || xdotool type --delay 0 "$choice"
else
echo "$1" >> $bookmark_file
fi
|