-
Notifications
You must be signed in to change notification settings - Fork 0
/
notes.txt
35 lines (25 loc) · 1.51 KB
/
notes.txt
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
ln -s dotfiles/vim/.vimrc $HOME/.vimrc
ln -s dotfiles/screen/.screenrc $HOME/.screenrc
ln -s dotfiles/i3/config $HOME/.config/i3/config
ln -s dotfiles/i3/custom_i3lock.sh $HOME/.config/i3/custom_i3lock.sh
ln -s dotfiles/i3/mpd_autostart.sh $HOME/.config/i3/mpd_autostart.sh
ln -s dotfiles/i3/i3blocks.conf $HOME/.config/i3/i3blocks.conf
ln -s dotfiles/rofi/config $HOME/.config/rofi/config
ln -s dotfiles/fontconfig/conf.d/10-symbols.conf $HOME/.config/fontconfig/conf.d/10-symbols.conf
ln -s dotfiles/polybar/config $HOME/.config/polybar/config
ln -s dotfiles/polybar/launch.sh $HOME/.config/polybar/launch.sh
ln -s dotfile/termite/config $HOME/.config/termite/config
# wallpaper changer
sudo ln -s dotfiles/scripts/wallpaper_shuffle.sh /usr/local/bin/wallpaper_shuffle.sh
sudo cp dotfiles/systemd/wallpaper.service /usr/lib/systemd/user/wallpaper.service
sudo cp dotfiles/systemd/wallpaper.timer /usr/lib/systemd/user/wallpaper.timer
systemctl --user enable wallpaper.timer
systemctl --user start wallpaper.timer
# modified /etc/systemd/logind.conf to have poweroff button ignored by systemd (so we don't accientally shutdown)
# call our custom_i3lock.sh on suspend/sleep
sudo ln -s dotfiles/i3/custom_i3lock.sh /usr/local/bin/custom_i3lock.sh
sudo cp dotfiles/systemd/[email protected] /etc/systemd/system # TODO check if this is the correct place, shouldn't it go to /usr/lib/systemd/user??
systemctl enable [email protected]
#### SYSTEMD SERVICES
# if not already enabled
systemctl --user enable mpd.service