Add install script

This commit is contained in:
Tyler Perkins 2023-11-25 18:18:54 -05:00
parent c5a12d565d
commit a742810d67
Signed by: tyler
GPG Key ID: 03B27509E17EFDC8
1 changed files with 15 additions and 0 deletions

15
install.sh Normal file
View 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