Fix bkmark hard coded path

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

2
bkmark
View File

@ -1,5 +1,5 @@
#!/bin/bash
SOURCE="/home/tyler/.frequent"
SOURCE="$HOME/.frequent"
xdotool type $(cat $SOURCE | dmenu -l 50 | cut -d ' ' -f1)

View File

@ -5,6 +5,7 @@ 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