Fix install of bkmark to touch in bkmark

This commit is contained in:
Tyler Perkins 2023-11-25 18:24:47 -05:00
parent 43cfed2814
commit 5c798221bc
Signed by: tyler
GPG Key ID: 03B27509E17EFDC8
2 changed files with 7 additions and 1 deletions

7
bkmark
View File

@ -1,5 +1,12 @@
#!/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
SOURCE="$HOME/.frequent"
touch $SOURCE
xdotool type $(cat $SOURCE | dmenu -l 50 | cut -d ' ' -f1)

View File

@ -5,7 +5,6 @@ INSTALL_LOCATION="$HOME/.local/bin"
echo "Installing scripts to $INSTALL_LOCATION"
cp -v ./bkmark $INSTALL_LOCATION
touch $HOME/.frequent
cp -v ./fix_screens $INSTALL_LOCATION
cp -v ./mount_drive $INSTALL_LOCATION
cp -v ./passmenu $INSTALL_LOCATION