-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathinstall_all.sh
executable file
·66 lines (62 loc) · 1.31 KB
/
install_all.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
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
#!/bin/bash
function install_yay {
WORK_DIR=$(mktemp -d)
if [[ ! "$WORK_DIR" || -d "$WORK_DIR" ]]; then
echo "Could not create temporary working directory"
exit 1
fi
cd $WORK_DIR
curl -O https://aur.archlinux.org/cgit/aur.git/snapshot/yay.tar.gz
tar xvf yay.tar.gz
cd yay
makepkg -s -i -c
rm -rf "$WORK_DIR"
}
function install_pkgs {
yay -S \
stow \
xorg-server \
xorg-xinit \
bspwm \
sxhkd \
polybar \
termite \
python-pywal \
rofi \
feh \
sxiv \
ntfs-3g \
udisks2 \
picom \
polybar \
dunst \
gvim \
zsh \
mpv \
zathura-pdf-mupdf \
lxappearance \
yaru \
gnome-themes-standard \
gtk-engine-murrine \
pulseaudio \
pavucontrol \
xdg-user-dirs \
noto-fonts \
noto-fonts-cjk \
noto-fonts-emoji \
bdf-tewi-git \
siji-git \
firefox \
openssh \
mesa-vdpau \
libva-vdpau-driver \
detox
}
function install_oh_my_zsh {
sh -c "$(curl -fsSL https://raw.githubusercontent.com/robbyrussell/oh-my-zsh/master/tools/install.sh)"
}
install_pacaur
install_pkgs
for d in $(ls -d */); do
(stow $d)
done