Fix install of bkmark to touch in bkmark
This commit is contained in:
parent
43cfed2814
commit
5c798221bc
7
bkmark
7
bkmark
@ -1,5 +1,12 @@
|
|||||||
#!/bin/bash
|
#!/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"
|
SOURCE="$HOME/.frequent"
|
||||||
|
touch $SOURCE
|
||||||
|
|
||||||
xdotool type $(cat $SOURCE | dmenu -l 50 | cut -d ' ' -f1)
|
xdotool type $(cat $SOURCE | dmenu -l 50 | cut -d ' ' -f1)
|
||||||
|
@ -5,7 +5,6 @@ INSTALL_LOCATION="$HOME/.local/bin"
|
|||||||
echo "Installing scripts to $INSTALL_LOCATION"
|
echo "Installing scripts to $INSTALL_LOCATION"
|
||||||
|
|
||||||
cp -v ./bkmark $INSTALL_LOCATION
|
cp -v ./bkmark $INSTALL_LOCATION
|
||||||
touch $HOME/.frequent
|
|
||||||
cp -v ./fix_screens $INSTALL_LOCATION
|
cp -v ./fix_screens $INSTALL_LOCATION
|
||||||
cp -v ./mount_drive $INSTALL_LOCATION
|
cp -v ./mount_drive $INSTALL_LOCATION
|
||||||
cp -v ./passmenu $INSTALL_LOCATION
|
cp -v ./passmenu $INSTALL_LOCATION
|
||||||
|
Loading…
Reference in New Issue
Block a user