-
Notifications
You must be signed in to change notification settings - Fork 0
/
install.sh
executable file
·43 lines (32 loc) · 1004 Bytes
/
install.sh
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
43
#!/usr/bin/env bash
# restore wallpaper
cp ./extra/wallpaper.png ~/wallpaper.png
# restore git configs
mkdir -p ~/.config/git
cp -r ./git/.config/git/* ~/.config/git/
# restore fish configs
mkdir -p ~/.config/fish
cp ./fish/.config/fish/config.fish ~/.config/fish/config.fish
# restore neofetch configs
mkdir -p ~/.config/neofetch
cp -r ./neofetch/.config/neofetch/* ~/.config/neofetch/
# restore picom config
cp ./picom/.config/picom.conf ~/.config/picom.conf
# restore i3 config
mkdir -p ~/.config/i3
cp ./i3/.config/i3/config ~/.config/i3/config
# restore i3 layputs
mkdir -p ~/.i3
cp ./i3/.i3/* ~/.i3/
# restore eww configs
mkdir -p ~/.config/eww
cp -r ./eww/.config/eww/* ~/.config/eww/
# restore kitty config
mkdir -p ~/.config/kitty
cp ./kitty/.config/kitty/kitty.conf ~/.config/kitty/kitty.conf
# restore neovim configs
mkdir -p ~/.config/nvim
cp -r ./nvim/.config/nvim/* ~/.config/nvim/
# restore dunst configs
mkdir -p ~/.config/dunst
cp -r ./dunst/.config/dunst/* ~/.config/dunst/