-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdependencies-x11.sh
More file actions
executable file
·171 lines (165 loc) · 2.4 KB
/
dependencies-x11.sh
File metadata and controls
executable file
·171 lines (165 loc) · 2.4 KB
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
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
#!/bin/bash
# FOR X11
sudo pacman -S \
os-prober \
perl-file-mimeinfo \
nnn \
tesseract-data-eng \
grub \
efibootmgr \
sudo \
reflector \
ntfs-3g \
htop \
unzip \
zip \
curl \
wget \
bluez \
bluez-utils \
docker \
docker-compose \
gcc \
ripgrep-all \
jq \
eza \
xclip \
fd \
zsh \
zoxide \
starship \
gnome-disk-utility \
ripgrep \
xsel \
ttf-font-awesome \
wmctrl \
xdotool \
gnome-keyring \
gvfs-mtp \
tumbler \
fzf \
tmux \
flatpak \
breeze-icons \
cmake \
meson \
rsync \
tmuxp \
dos2unix \
iw \
wpa_supplicant \
networkmanager \
openssh \
dhcpcd \
aria2 \
xorg \
xorg-server \
xorg-apps \
xorg-xinit \
alacritty \
firefox \
alsa-utils \
alsa-plugins \
pipewire \
pipewire-audio \
pipewire-jack \
pipewire-pulse \
pipewire-alsa \
wireplumber \
mpv \
zathura \
zathura-cb \
zathura-djvu \
zathura-ps \
zathura-pdf-mupdf \
vlc \
telegram-desktop \
qbittorrent \
loupe \
gnome-calculator \
okular \
gimp \
noto-fonts \
noto-fonts-cjk \
noto-fonts-emoji \
noto-fonts-extra \
ttf-ubuntu-font-family \
ttf-dejavu \
ttf-freefont \
ttf-liberation \
ttf-droid \
ttf-roboto \
ttf-font-awesome \
terminus-font
read -r -p "Install dependencies for Xfce?([yes]):" confirm
case $confirm in
yes)
pacman -S xfce4 xfce4-goodies lightdm lightdm-gtk-greeter lightdm-gtk-greeter-settings
systemctl enable lightdm
;;
*)
echo "You choose NO"
;;
esac
read -r -p "Install dependencies for i3?([yes]):" confirm
case $confirm in
yes)
pacman -S network-manager-applet \
xfce4-notifyd \
xdg-utils \
xdg-desktop-portal \
picom \
i3-wm \
i3blocks \
i3lock \
numlockx \
i3status \
xterm \
flameshot \
rxvt-unicode \
ranger \
rofi \
dmenu \
rofimoji \
lightdm \
lightdm-gtk-greeter \
lxappearance \
arc-gtk-theme \
papirus-icon-theme \
polybar \
lxqt-policykit \
blueman \
copyq \
autorandr \
pavucontrol \
thunar \
feh \
xdg-desktop-portal-gtk
systemctl enable lightdm
;;
*)
echo "You choose NO"
;;
esac
read -r -p "Install dependencies for Gnome([yes]):" confirm
case $confirm in
yes)
pacman -S gnome \
gnome-browser-connector \
gdm \
seahorse \
nautilus-sendto \
gnome-tweaks \
gnome-usage
systemctl enable gdm
;;
*)
echo "You choose NO"
;;
esac
echo "Enable Services"
systemctl enable NetworkManager
systemctl enable sshd
systemctl enable dhcpcd
systemctl enable docker
systemctl enable bluetooth