Add install script
This commit is contained in:
parent
c5a12d565d
commit
a742810d67
15
install.sh
Normal file
15
install.sh
Normal file
@ -0,0 +1,15 @@
|
||||
#!/bin/bash
|
||||
|
||||
INSTALL_LOCATION="$HOME/.local/bin"
|
||||
|
||||
echo "Installing scripts to $INSTALL_LOCATION"
|
||||
|
||||
cp -v ./bkmark $INSTALL_LOCATION
|
||||
cp -v ./fix_screens $INSTALL_LOCATION
|
||||
cp -v ./mount_drive $INSTALL_LOCATION
|
||||
cp -v ./passmenu $INSTALL_LOCATION
|
||||
cp -v ./pipes.sh $INSTALL_LOCATION
|
||||
|
||||
if [[ "$PATH:" != *":$HOME/.local/bin:"* ]]; then
|
||||
echo "The install location ($INSTALL_LOCATION), is not in your PATH! Please add it to you path."
|
||||
fi
|
Loading…
Reference in New Issue
Block a user