-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdependencies-wayland.sh
More file actions
executable file
·131 lines (123 loc) · 1.9 KB
/
dependencies-wayland.sh
File metadata and controls
executable file
·131 lines (123 loc) · 1.9 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
#!/bin/bash
# FOR wayland
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 \
fd \
zsh \
zoxide \
starship \
gnome-disk-utility \
ripgrep \
ttf-font-awesome \
gnome-keyring \
gvfs-mtp \
tumbler \
fzf \
tmux \
tmuxp \
flatpak \
cmake \
meson \
rsync \
dos2unix \
iw \
wpa_supplicant \
networkmanager \
openssh \
dhcpcd \
aria2 \
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 \
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 Swaywm([yes]):" confirm
case $confirm in
yes)
pacman -S --needed sway swaylock swayidle swaybg foot polkit greetd greetd-gtkgreet waybar wofi dmenu
systemctl enable greetd
;;
*)
echo "You choose NO"
;;
esac
read -r -p "Install dependencies for Gnome([yes]):" confirm
case $confirm in
yes)
pacman -S gnome \
gnome-browser-connector \
seahorse \
nautilus-sendto \
gnome-tweaks \
gnome-usage
systemctl enable gdm
;;
*)
echo "You choose NO"
;;
esac
read -r -p "Install dependencies for KDE([yes]):" confirm
case $confirm in
yes)
pacman -S --needed xorg sddm plasma plasma-wayland-session kde-applications
systemctl enable sddm
;;
*)
echo "You choose NO"
;;
esac
echo "Enable Services"
systemctl enable NetworkManager
systemctl enable sshd
systemctl enable dhcpcd
systemctl enable docker
systemctl enable bluetooth