diff --git a/install.sh b/install.sh new file mode 100644 index 0000000..6376191 --- /dev/null +++ b/install.sh @@ -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