28 lines
952 B
Bash
Executable File
28 lines
952 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 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*
|
|
|
|
# Remove /boot/firmware folder
|
|
rm -r /boot/firmware
|
|
|
|
# Lowers the footprint in RAM at the small expense of added size to the ISO.
|
|
#update-icon-caches /usr/share/icons/*
|
|
find /usr/share/icons -type d -exec gtk-update-icon-cache -f {} \;
|
|
|
|
# Enables the use of lightdm with budgie-desktop
|
|
update-alternatives --install /usr/bin/x-session-manager x-session-manager /usr/bin/budgie-desktop 60
|
|
|
|
# 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
|
|
|
|
|