diff options
author | Tharre <tharre3@gmail.com> | 2015-07-18 22:03:55 +0200 |
---|---|---|
committer | Tharre <tharre3@gmail.com> | 2016-10-07 20:13:33 +0000 |
commit | 3198ee4d4c23f9b5303cd16babbe4830e71bb37e (patch) | |
tree | 290c589504dd01f1438e76fef92948762978c7b7 /install.sh | |
parent | 7051c2e9815113a5ac6a3e4cd2993dc4fcc0616f (diff) | |
download | dotfiles-3198ee4d4c23f9b5303cd16babbe4830e71bb37e.tar.gz dotfiles-3198ee4d4c23f9b5303cd16babbe4830e71bb37e.tar.xz dotfiles-3198ee4d4c23f9b5303cd16babbe4830e71bb37e.zip |
Seperate dotfiles specific to full arch installs
Diffstat (limited to 'install.sh')
-rwxr-xr-x | install.sh | 10 |
1 files changed, 7 insertions, 3 deletions
@@ -21,10 +21,14 @@ ln -sf "$dotfiles/shell/_gitconfig" "$HOME/.gitconfig" # [tmux] ln -sf "$dotfiles/shell/_tmux.conf" "$HOME/.tmux.conf" -# [arch linux] -ln -sf "$dotfiles/shell/_makepkg.conf" "$HOME/.makepkg.conf" - # [gdb] ln -sf "$dotfiles/shell/_gdbinit" "$HOME/.gdbinit" +if [ "$1" = "arch" ]; then + echo "Performing full installation." + + # [arch linux] + ln -sf "$dotfiles/shell/_makepkg.conf" "$HOME/.makepkg.conf" +fi + echo "Finished installing dotfiles" |