diff options
author | Ekaitz Zarraga <ekaitz@elenq.tech> | 2020-06-30 12:45:20 +0200 |
---|---|---|
committer | Ekaitz Zarraga <ekaitz@elenq.tech> | 2020-06-30 12:45:20 +0200 |
commit | 21a262169f5f079ee6e93db4101a4e89a48ae610 (patch) | |
tree | 9148999355311c618b944bff7ebe9281ac4ce1a8 /uninstall.sh | |
parent | 32580239d582195fd4ea6b53a1e5831621d0ea9e (diff) |
add i3 and i3 status
Diffstat (limited to 'uninstall.sh')
-rw-r--r-- | uninstall.sh | 22 |
1 files changed, 22 insertions, 0 deletions
diff --git a/uninstall.sh b/uninstall.sh new file mode 100644 index 0000000..173b069 --- /dev/null +++ b/uninstall.sh @@ -0,0 +1,22 @@ +#!/bin/bash + +# Link at home folder +stow -Dt ~ bash tmux git + +# Link at XDG_CONFIG_HOME if set, if not to $HOME/.config (they should be the same) +stow -Dt ${XDG_CONFIG_HOME:=$HOME/.config} -D nvim + +# konsole colors +# stow -Rt "${XDG_CONFIG_HOME:=$HOME/.config}/konsole" konsole + +# kitty +stow -Dt "${XDG_CONFIG_HOME:=$HOME/.config}/kitty" 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 +# Plasma session environment variables +#stow -Rt "${XDG_CONFIG_HOME:=$HOME/.config}/plasma-workspace/env" plasma-env |