blob: 3371db2fc0dbd09474baa6754a7d6f034514bdd6 (
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
|
#!/bin/bash
# Link at home folder
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} nvim
# Shepherd
stow -Dt ${XDG_CONFIG_HOME:=$HOME/.config} shepherd
# Alacritty
stow -Dt ${XDG_CONFIG_HOME:=$HOME/.config} alacritty
# redshift
stow -Dt ${XDG_CONFIG_HOME:=$HOME/.config} redshift
# Guix channels
stow -Dt "${XDG_CONFIG_HOME:=$HOME/.config}/guix" guix
# i3
stow -Dt ${XDG_CONFIG_HOME:=$HOME/.config} i3
stow -Dt ${XDG_CONFIG_HOME:=$HOME/.config} i3status
stow -Dt ${XDG_CONFIG_HOME:=$HOME/.config} dunst
# newsboat
stow -Dt ${XDG_CONFIG_HOME:=$HOME/.config} newsboat
# sioyek
stow -Dt ${XDG_CONFIG_HOME:=$HOME/.config} sioyek
# Exercise reminder
stow -Dt ${XDG_CONFIG_HOME:=$HOME/.config} reminder
# feh
stow -Dt ${XDG_CONFIG_HOME:=$HOME/.config} feh
# picom
stow -Dt ${XDG_CONFIG_HOME:=$HOME/.config} feh
|