2023-06-12 21:06:54 +02:00
|
|
|
#!/bin/bash
|
|
|
|
|
|
|
|
declare -A packages
|
|
|
|
|
2023-06-13 20:01:21 +02:00
|
|
|
# the first three array entries are numbered because they have to be ordered
|
|
|
|
|
2023-06-12 21:06:54 +02:00
|
|
|
# install base desktop stuff
|
2023-06-21 17:46:02 +02:00
|
|
|
packages[0-base]="plymouth ecryptfs-utils curl wget python-is-python3"
|
2023-06-13 20:01:21 +02:00
|
|
|
|
|
|
|
# install desktop base
|
|
|
|
packages[1-desktop-base]="ttf-mscorefonts-installer fonts-ubuntu fonts-ubuntu-console fonts-liberation2
|
2023-06-14 01:31:12 +02:00
|
|
|
fonts-noto-core fonts-dejavu fonts-hack
|
2023-06-14 00:51:49 +02:00
|
|
|
flatpak flatpak-xdg-utils gnome-software-plugin-flatpak network-manager-openvpn-gnome brasero
|
2023-06-13 20:01:21 +02:00
|
|
|
dconf-editor thunderbird"
|
2023-06-12 21:06:54 +02:00
|
|
|
|
|
|
|
# install gnome base
|
2023-06-14 00:46:23 +02:00
|
|
|
packages[2-desktop-gnome]="gnome-shell-extension-manager gnome-tweaks gnome-shell-extensions
|
2023-06-12 21:06:54 +02:00
|
|
|
gnome-shell-extension-desktop-icons-ng gnome-shell-extension-dashtodock
|
|
|
|
gnome-shell-extension-appindicator gnome-shell-extension-system-monitor
|
|
|
|
gnome-shell-extension-panel-osd
|
2023-06-12 21:51:38 +02:00
|
|
|
yaru-theme-gnome-shell yaru-theme-gtk yaru-theme-icon yaru-theme-sound
|
2023-06-21 17:46:02 +02:00
|
|
|
yaru-theme-unity"
|