add packages

This commit is contained in:
2025-03-16 01:01:49 +01:00
parent 836700022e
commit 9b9ec12b8e

View File

@@ -124,6 +124,7 @@ zsh_packages=(
zsh-syntax-highlighting
)
theme_packages=(
btop-theme-catppuccin
catppuccin-cursors-mocha
catppuccin-gtk-theme-mocha
papirus-folders-catppuccin-git
@@ -184,6 +185,12 @@ containers_packages=(
waydroid
lxc
)
thunderbird_packages=(
thunderbird
thunderbird-i18n-en-us
thunderbird-dark-reader
thunderbird-ublock-origin
)
# function name : setup browser
# Description: setup browser
@@ -295,10 +302,11 @@ install_packages_group() {
"Containers" "Install Containers packages" OFF
"U2F" "Setup U2F" OFF
"OpenRGB" "Setup OpenRGB" OFF
"Thunderbird" "Install Thunderbird" OFF
)
selected_groups=$(whiptail --title "Install Packages Group" --checklist \
"Choose the packages group you want to install:" 20 78 11 \
"Choose the packages group you want to install:" 20 78 12 \
"${options[@]}" 3>&1 1>&2 2>&3)
for group in $selected_groups; do
@@ -336,6 +344,9 @@ install_packages_group() {
"\"OpenRGB\"")
setup_openrgb
;;
"\"Thunderbird\"")
install_packages thunderbird_packages[@]
;;
esac
done
}