From 722c5fd278d2500e599a8673fcff8b4ab2d457fc Mon Sep 17 00:00:00 2001 From: tavo-wasd Date: Mon, 29 Jan 2024 22:20:47 -0600 Subject: [PATCH] couple fixes --- awesome-software/debian-gnu-linux/extrasel.sh | 11 +++++++---- 1 file changed, 7 insertions(+), 4 deletions(-) diff --git a/awesome-software/debian-gnu-linux/extrasel.sh b/awesome-software/debian-gnu-linux/extrasel.sh index 0205a31..b37e799 100644 --- a/awesome-software/debian-gnu-linux/extrasel.sh +++ b/awesome-software/debian-gnu-linux/extrasel.sh @@ -35,6 +35,9 @@ warning() { show_notification "Performing update" apt update && apt upgrade -y +show_notification "Installing fzf for menus" +apt install fzf -y + func_debloat() { show_notification "Debloating" apt purge gnome-games gnome-music synaptic transmission-gtk evolution shotwell -y @@ -69,7 +72,7 @@ func_locale_install () { func_codecs_msfonts () { show_notification "Installing multimedia codecs & microsoft fonts" - apt install vlc libavcodec-extra ttf-mscorefonts-installer + apt install vlc libavcodec-extra ttf-mscorefonts-installer -y } func_steam() { @@ -77,8 +80,8 @@ func_steam() { show_notification "Installing Steam" dpkg --add-architecture i386 apt update - apt install mesa-vulkan-drivers libglx-mesa0:i386 mesa-vulkan-drivers:i386 libgl1-mesa-dri:i386 - apt install steam-installer + apt install mesa-vulkan-drivers libglx-mesa0:i386 mesa-vulkan-drivers:i386 libgl1-mesa-dri:i386 -y + apt install steam-installer -y } func_flatpak() { @@ -108,7 +111,7 @@ printf '\033[2m \033[0m ' -show_dialog "DE-BLOAT" "Remove unnecessary packages (e.g. gnome-games) [y/n]:" && read -r debloat +show_dialog "DE-BLOAT" "Remove unnecessary packages (e.g. gnome-games) [y/n]: " && read -r debloat show_dialog "NON-FREE" "Add non-free & contrib repositories (e.g. for Valve's Steam) [y/n]: " && read -r nonfree func_locale_choose show_dialog_newline "LOCALE" "Add locale: $CHOSEN_LOCALE"