diff options
author | Ekaitz Zarraga <ekaitz@elenq.tech> | 2021-01-13 23:31:44 +0100 |
---|---|---|
committer | Ekaitz Zarraga <ekaitz@elenq.tech> | 2021-01-13 23:48:04 +0100 |
commit | 45503702fdb366ad643f4827e50c0df7cf93980e (patch) | |
tree | 5bf4bba9e22b75b39167351df42243b5b97122b5 /uninstall.sh | |
parent | 64b8b0c0ea9776f4d8002af1f57bf846dfe2697e (diff) |
Reorder using Stow better
Diffstat (limited to 'uninstall.sh')
-rw-r--r-- | uninstall.sh | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/uninstall.sh b/uninstall.sh index 3c1e99b..fc3c2c6 100644 --- a/uninstall.sh +++ b/uninstall.sh @@ -1,12 +1,12 @@ #!/bin/bash # Link at home folder -stow -Dt ~ bash tmux git +stow --dotfiles -Dt ~ bash tmux git # Link at XDG_CONFIG_HOME if set, if not to $HOME/.config (they should be the same) # NeoVim -stow -Dt ${XDG_CONFIG_HOME:=$HOME/.config} -D nvim +stow -Dt ${XDG_CONFIG_HOME:=$HOME/.config} nvim # Shepherd stow -Dt ${XDG_CONFIG_HOME:=$HOME/.config} shepherd @@ -15,13 +15,13 @@ stow -Dt ${XDG_CONFIG_HOME:=$HOME/.config} shepherd # stow -Rt "${XDG_CONFIG_HOME:=$HOME/.config}/konsole" konsole # kitty -stow -Dt "${XDG_CONFIG_HOME:=$HOME/.config}/kitty" kitty +stow -Dt ${XDG_CONFIG_HOME:=$HOME/.config} kitty # Guix channels stow -Dt "${XDG_CONFIG_HOME:=$HOME/.config}/guix" guix # i3 -stow -Dt "${XDG_CONFIG_HOME:=$HOME/.config}/i3" i3 -stow -Dt "${XDG_CONFIG_HOME:=$HOME/.config}/i3status" i3status +stow -Dt ${XDG_CONFIG_HOME:=$HOME/.config} i3 +stow -Dt ${XDG_CONFIG_HOME:=$HOME/.config} i3status # Plasma session environment variables #stow -Rt "${XDG_CONFIG_HOME:=$HOME/.config}/plasma-workspace/env" plasma-env |