-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathgnome-setup.sh
More file actions
42 lines (37 loc) · 874 Bytes
/
gnome-setup.sh
File metadata and controls
42 lines (37 loc) · 874 Bytes
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
#!/bin/bash
export DEBIAN_FRONTEND=noninteractive
export DEBCONF_NONINTERACTIVE_SEEN=true
export LC_ALL=C
export LANGUAGE=C
export LANG=C
sudo apt-get update
sudo apt-get install -y gnome-shell \
gnome-shell-* \
dbus-x11 \
gnome-terminal \
gnome-accessibility-themes \
gnome-calculator \
gnome-control-center* \
gnome-desktop3-data \
gnome-initial-setup \
gnome-menus \
gnome-text-editor \
gnome-themes-extra* \
gnome-user-docs \
gnome-video-effects \
gnome-tweaks \
gnome-software \
language-pack-en-base \
firefox \
mesa-utils \
yaru-*
# load dconf settings
if [ -f /jammy.dconf.conf ]; then
# export dbus session address
export $(dbus-launch)
dconf load / < /jammy.dconf.conf || {
echo -e "\t: dconf load failed.."
}
else
echo -e "\t: dconf file not found.."
fi