blob: 27c8b6a1217385656054076c8dd8e29497de5c16 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
|
#!/bin/bash
echo ${XDG_CONFIG_HOME:=$HOME/.config}
# Link at home folder
stow --dotfiles -Rt$HOME 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 nvim
# Alacritty
stow -Rt $XDG_CONFIG_HOME alacritty
# Guix channels
stow -Rt "$XDG_CONFIG_HOME/guix" guix
# i3
stow -Rt $XDG_CONFIG_HOME i3
stow -Rt $XDG_CONFIG_HOME i3status
# dunst
stow -Rt $XDG_CONFIG_HOME dunst
# Shepherd user services
stow -Rt $XDG_CONFIG_HOME shepherd
# Redshift
stow -Rt $XDG_CONFIG_HOME redshift
# Newsboat
stow -Rt $XDG_CONFIG_HOME newsboat
# Sioyek
stow -Rt $XDG_CONFIG_HOME sioyek
# Reminder
stow -Rt $XDG_CONFIG_HOME reminder
# feh
stow -Rt $XDG_CONFIG_HOME feh
# picom
stow -Rt $XDG_CONFIG_HOME picom
|