-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.sh
executable file
·34 lines (24 loc) · 890 Bytes
/
setup.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
#!/bin/sh
#-----------------------------------------------------
# Video drivers
packages0="mesa vulkan-icd-loader libva-mesa-driver mesa-vdpau"
# Main system packages
packages1="wayland sway swappy swaync swayidle swaybg swaylock-effects"
packages2="wofi waybar wl-clipboard wl-color-picker grim slurp jq foot fish starship htop polkit mpv nnn"
# Sounds
packages3="pipewire pw-volume"
# Theme and Fonts
packages4="sweet-gtk-theme-dark ttf-fira-code nerd-fonts-fira-code otf-font-awesome"
#-----------------------------------------------------
yay -Syu $packages0 $packages1 $packages2 $packages3 $packages4
#-----------------------------------------------------
# Configs
for file in $(pwd)/.config/*
do
name="${file##*/}"
rm -rf $HOME/.config/$name
ln -s $(pwd)/.config/$name $HOME/.config
done
#-----------------------------------------------------
# Clear
yay -Yc