.dotfiles/install.sh

16 lines
348 B
Bash
Raw Normal View History

2020-11-07 16:57:15 +01:00
#!/bin/bash
2020-11-07 17:07:59 +01:00
# - Prerequesits -
echo "-- Installing git --"
2020-11-07 17:07:59 +01:00
if [ "$(which git)" != "" ]; then
apt-get install git -y > /dev/null
fi
2020-11-07 17:07:59 +01:00
# - Cloning Repo -
echo "-- Cloning repo --"
git clone git@github.com:jim-fx/.dotfiles.git ~/.dotfiles
2020-11-07 17:07:59 +01:00
# - Executing the script -
echo "-- starting script --"
chmod +x ~/.dotfiles/setup.sh
~/.dotfiles/setup.sh