diff options
author | Raymaekers Luca <raymaekers.luca@gmail.com> | 2023-02-16 15:52:25 +0100 |
---|---|---|
committer | Raymaekers Luca <raymaekers.luca@gmail.com> | 2023-02-16 15:52:59 +0100 |
commit | b3a1a3affc7d86c52c012212895c6af48b6bf38b (patch) | |
tree | 8842ed4f1838437e078c48fc75272ca158d68e1a /stowcmds.sh | |
parent | 76daf59473850fc50629509cf4195fe88b57cae2 (diff) |
fixed: (stowcmds) wrong details
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 |