From 9b9ec12b8e7a212c061a97c3149d638f01c7db0d Mon Sep 17 00:00:00 2001 From: Lightemerald Date: Sun, 16 Mar 2025 01:01:49 +0100 Subject: [PATCH] add packages --- arch-setup.sh | 13 ++++++++++++- 1 file changed, 12 insertions(+), 1 deletion(-) diff --git a/arch-setup.sh b/arch-setup.sh index 0e152d9..a9b1525 100755 --- a/arch-setup.sh +++ b/arch-setup.sh @@ -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 }