summaryrefslogtreecommitdiffstats
path: root/install.sh
diff options
context:
space:
mode:
authorTharre <tharre3@gmail.com>2015-07-18 22:03:55 +0200
committerTharre <tharre3@gmail.com>2016-10-07 20:13:33 +0000
commit3198ee4d4c23f9b5303cd16babbe4830e71bb37e (patch)
tree290c589504dd01f1438e76fef92948762978c7b7 /install.sh
parent7051c2e9815113a5ac6a3e4cd2993dc4fcc0616f (diff)
downloaddotfiles-3198ee4d4c23f9b5303cd16babbe4830e71bb37e.tar.gz
dotfiles-3198ee4d4c23f9b5303cd16babbe4830e71bb37e.tar.xz
dotfiles-3198ee4d4c23f9b5303cd16babbe4830e71bb37e.zip
Seperate dotfiles specific to full arch installs
Diffstat (limited to 'install.sh')
-rwxr-xr-xinstall.sh10
1 files changed, 7 insertions, 3 deletions
diff --git a/install.sh b/install.sh
index 78945ed..df9de5b 100755
--- a/install.sh
+++ b/install.sh
@@ -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"