2023-02-04 18:25:27 -01:00
|
|
|
#!/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
|
2023-06-24 22:20:46 +00:00
|
|
|
apt --purge --yes autoremove murrine-themes hv3 libsqlite3-tcl libtcl8.6 libtk-img libtk8.6 tcl tcl-tls tcl8.6 tcllib tk tk-html3 tk8.6 konsole evolution termit raspi-firmware systemsettings nvidia*
|
2023-02-04 18:25:27 -01:00
|
|
|
|
2023-07-31 13:17:28 +00:00
|
|
|
# Remove /boot/firmware folder
|
|
|
|
rm -r /boot/firmware
|
|
|
|
|
2023-02-04 18:25:27 -01:00
|
|
|
# Lowers the footprint in RAM at the small expense of added size to the ISO.
|
2023-07-01 02:02:49 +00:00
|
|
|
#update-icon-caches /usr/share/icons/*
|
|
|
|
find /usr/share/icons -type d -exec gtk-update-icon-cache -f {} \;
|
2023-02-04 18:25:27 -01:00
|
|
|
|
|
|
|
#add flatpak repo to gnome-software
|
|
|
|
flatpak remote-add --if-not-exists flathub https://flathub.org/repo/flathub.flatpakrepo
|
|
|
|
|
|
|
|
#add-architecture i386
|
|
|
|
dpkg --add-architecture i386
|
|
|
|
|