couple fixes
This commit is contained in:
parent
7204512f29
commit
722c5fd278
1 changed files with 7 additions and 4 deletions
|
@ -35,6 +35,9 @@ warning() {
|
||||||
show_notification "Performing update"
|
show_notification "Performing update"
|
||||||
apt update && apt upgrade -y
|
apt update && apt upgrade -y
|
||||||
|
|
||||||
|
show_notification "Installing fzf for menus"
|
||||||
|
apt install fzf -y
|
||||||
|
|
||||||
func_debloat() {
|
func_debloat() {
|
||||||
show_notification "Debloating"
|
show_notification "Debloating"
|
||||||
apt purge gnome-games gnome-music synaptic transmission-gtk evolution shotwell -y
|
apt purge gnome-games gnome-music synaptic transmission-gtk evolution shotwell -y
|
||||||
|
@ -69,7 +72,7 @@ func_locale_install () {
|
||||||
|
|
||||||
func_codecs_msfonts () {
|
func_codecs_msfonts () {
|
||||||
show_notification "Installing multimedia codecs & microsoft fonts"
|
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() {
|
func_steam() {
|
||||||
|
@ -77,8 +80,8 @@ func_steam() {
|
||||||
show_notification "Installing Steam"
|
show_notification "Installing Steam"
|
||||||
dpkg --add-architecture i386
|
dpkg --add-architecture i386
|
||||||
apt update
|
apt update
|
||||||
apt install mesa-vulkan-drivers libglx-mesa0:i386 mesa-vulkan-drivers:i386 libgl1-mesa-dri:i386
|
apt install mesa-vulkan-drivers libglx-mesa0:i386 mesa-vulkan-drivers:i386 libgl1-mesa-dri:i386 -y
|
||||||
apt install steam-installer
|
apt install steam-installer -y
|
||||||
}
|
}
|
||||||
|
|
||||||
func_flatpak() {
|
func_flatpak() {
|
||||||
|
@ -108,7 +111,7 @@ printf '\033[2m
|
||||||
\033[0m
|
\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
|
show_dialog "NON-FREE" "Add non-free & contrib repositories (e.g. for Valve's Steam) [y/n]: " && read -r nonfree
|
||||||
func_locale_choose
|
func_locale_choose
|
||||||
show_dialog_newline "LOCALE" "Add locale: $CHOSEN_LOCALE"
|
show_dialog_newline "LOCALE" "Add locale: $CHOSEN_LOCALE"
|
||||||
|
|
Loading…
Reference in a new issue