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"
|
||||
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() {
|
||||
|
|
Loading…
Reference in a new issue