Scripts/bkmark

13 lines
320 B
Plaintext
Raw Permalink Normal View History

2023-11-25 23:11:34 +00:00
#!/bin/bash
# Access a set of links using dmenu.
# The links are defined in $HOME/.frequent by default
#
# They can have comments on the lines;
# the only thing checked in the dmenu script is
# the first complete word
2023-11-25 23:11:34 +00:00
2023-11-25 23:19:41 +00:00
SOURCE="$HOME/.frequent"
touch $SOURCE
2023-11-25 23:11:34 +00:00
xdotool type $(cat $SOURCE | dmenu -l 50 | cut -d ' ' -f1)