diff options
Diffstat (limited to 'stowcmds.sh')
-rw-r--r-- | stowcmds.sh | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/stowcmds.sh b/stowcmds.sh index dc44290..d2153bf 100644 --- a/stowcmds.sh +++ b/stowcmds.sh @@ -1,12 +1,14 @@ #!/usr/bin/env bash -case in "${MACH:=desktop}" +case "${MACH:=desktop}" in 'desktop') mkdir "$HOME/bin" - stow -d bin/ -t "$d/bin" -R common dmscripts extra + 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 ;; + *) + break esac |