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
|
2024-01-24 12:05:12 -01:00
|
|
|
apt --purge --yes autoremove vim vim-tiny nautilus murrine-themes hv3 inkscape gnome-control-center gnome-control-center-data gnome-system-monitor malcontent konsole termit raspi-firmware systemsettings nvidia* imagemagick*
|
2023-02-04 18:25:27 -01:00
|
|
|
|
2023-07-31 13:17:02 +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
|