blob: ae27a2d682e484e9f6847023e005cf9ca3403d01 (
plain)
1
2
3
4
5
6
7
8
9
10
|
#!/bin/bash
# Link at home folder
stow -Rt ~ bash tmux git
# Link at XDG_CONFIG_HOME if set, if not to $HOME/.config (they should be the same)
stow -Rt ${XDG_CONFIG_HOME:=$HOME/.config} nvim
# konsole colors
stow -Rt "${XDG_CONFIG_HOME:=$HOME/.config}/konsole" konsole
|