31 lines
1.0 KiB
Plaintext
31 lines
1.0 KiB
Plaintext
|
#!/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 nautilus hv3 mpv murrine-themes smplayer deluge picom gnome-calculator konsole malcontent nvidia-tesla-470-alternative termit
|
||
|
|
||
|
## This section is the "lint-trap" to remove files and/or
|
||
|
## directories not associated with or required by AcorOS.
|
||
|
## Followed by \ , add files to be removed, one per line.
|
||
|
|
||
|
for i in \
|
||
|
/usr/share/applications/lxde-x-www-browser.desktop \
|
||
|
/usr/share/applications/org.kde.kde5.desktop \
|
||
|
/usr/share/applications/acoroslocale-im.desktop \
|
||
|
/etc/alternatives/vi \
|
||
|
|
||
|
do [ -e $i ] &&
|
||
|
rm -rf ${i} ||
|
||
|
echo " The path ${i} was not found and couldn't be removed."
|
||
|
done
|
||
|
# 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
|
||
|
|