22 lines
792 B
Bash
Executable File
22 lines
792 B
Bash
Executable File
#!/bin/bash
|
|
|
|
### Error checking added to "lint-trap" section.
|
|
### Missing files no longer cause builds to fail.
|
|
|
|
# Remove software
|
|
# apt remove -y firefox-esr
|
|
# apt remove -y termit
|
|
apt --purge --yes autoremove vim vim-tiny murrine-themes termit gnome-shell gdm3 ubuntu-session mutter gnome-control-center gnome-control-center-data gnome-control-center-faces gnome-online-accounts gedit* apport update-notifier-common update-notifier
|
|
# Lowers the footprint in RAM at the small expense of added size to the ISO.
|
|
update-icon-caches /usr/share/icons/*
|
|
|
|
#add flatpak repo to gnome-software
|
|
flatpak remote-add --if-not-exists flathub https://flathub.org/repo/flathub.flatpakrepo
|
|
|
|
#fix network-manager install
|
|
dpkg-reconfigure network-manager
|
|
|
|
#add-architecture i386
|
|
dpkg --add-architecture i386
|
|
|