summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--stowcmds.sh8
1 files changed, 7 insertions, 1 deletions
diff --git a/stowcmds.sh b/stowcmds.sh
index d2153bf..d23e66d 100644
--- a/stowcmds.sh
+++ b/stowcmds.sh
@@ -4,11 +4,17 @@ case "${MACH:=desktop}" in
'desktop')
mkdir "$HOME/bin"
stow -d bin/ -t "$HOME/bin" -R common dmscripts extra
-
mkdir "$HOME/.config"
stow -d config/ -t "$HOME/.config" -R essentials common extra theme X
stow -d config/ -t "$HOME/" -R zshrc
;;
+ "server")
+ mkdir -p "$HOME/bin"
+ stow -d bin/ -t "$HOME/bin" -R common
+ mkdir -p "$HOME/.config"
+ stow -d config/ -t "$HOME/.config" -R essentials common
+ stow -d config/ -t "$HOME/" -R zshrc
+ ;;
*)
break
esac