-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.sh
More file actions
executable file
·35 lines (27 loc) · 919 Bytes
/
setup.sh
File metadata and controls
executable file
·35 lines (27 loc) · 919 Bytes
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
#!/bin/bash
# Link alacritty config
mv ~/.config/alacritty ~/.config/alacritty.bak
ln -s `pwd`/alacritty ~/.config/alacritty
# Link nvim config
mv ~/.config/nvim ~/.config/nvim.bak
ln -s `pwd`/nvim ~/.config/nvim
# Link hypr config
mv ~/.config/hypr ~/.config/hypr.bak
ln -s `pwd`/hypr ~/.config/hypr
# Link waybar config
mv ~/.config/waybar ~/.config/waybar.bak
ln -s `pwd`/waybar ~/.config/waybar
# Link dunst config
mv ~/.config/dunst ~/.config/dunst.bak
ln -s `pwd`/dunst ~/.config/dunst
# Link walker config
mv ~/.config/walker ~/.config/walker.bak
ln -s `pwd`/walker ~/.config/walker
# Link elephant config
mv ~/.config/elephant ~/.config/elephant.bak
ln -s `pwd`/elephant ~/.config/elephant
# Link tmux config
# tpm is cloned into ~/.tmux, NOT ~/.config/tmux, per docs
mv ~/.config/tmux ~/.config/tmux.bak
ln -s `pwd`/tmux ~/.config/tmux
git clone https://github.com/tmux-plugins/tpm ~/.tmux/plugins/tpm