blob: 1198e7d27afc1c7746b5b1f429ac9af31091e9ac (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
#!/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
# kitty
stow -Rt "${XDG_CONFIG_HOME:=$HOME/.config}/kitty" kitty
# Guix channels
stow -Rt "${XDG_CONFIG_HOME:=$HOME/.config}/guix" guix
# Plasma session environment variables
#stow -Rt "${XDG_CONFIG_HOME:=$HOME/.config}/plasma-workspace/env" plasma-env
|