diff --git a/install.sh b/install.sh new file mode 100755 index 0000000..22f7ae7 --- /dev/null +++ b/install.sh @@ -0,0 +1,18 @@ +#!/bin/bash + +# TODO check if fortune-mod is installed and if not, install it + +# Clears out the old .bashrc +if [ -f ~/.bashrc ]; +then + rm ~/.bashrc +fi + +# Grabs the skeleton .bashrc +cp /etc/skel/.bashrc ~/.bashrc + +# Appends the custom .bashrc file +echo " +if [ -f `pwd`/bash.bashrc ] && ! shopt -oq posix; then + . `pwd`/bash.bashrc +fi" >> ~/.bashrc