update hooks and build scripts
This commit is contained in:
parent
ff039dd94b
commit
7ddab94ff5
|
@ -46,3 +46,6 @@ xfc4-power-manager &
|
||||||
|
|
||||||
## Screensaver software
|
## Screensaver software
|
||||||
gnome-screensaver &
|
gnome-screensaver &
|
||||||
|
|
||||||
|
## Clipboard software
|
||||||
|
xfce4-clipman &
|
||||||
|
|
|
@ -9,19 +9,40 @@
|
||||||
################################################################################
|
################################################################################
|
||||||
|
|
||||||
# Remove software
|
# Remove software
|
||||||
apt --purge --yes autoremove \
|
apt --purge --yes autoremove \
|
||||||
vim \
|
|
||||||
vim-tiny \
|
|
||||||
nautilus \
|
nautilus \
|
||||||
hv3 \
|
hv3 \
|
||||||
mpv \
|
mpv \
|
||||||
murrine-themes \
|
murrine-themes \
|
||||||
|
smplayer \
|
||||||
|
deluge \
|
||||||
|
picom \
|
||||||
|
gnome-calculator \
|
||||||
konsole \
|
konsole \
|
||||||
malcontent \
|
malcontent \
|
||||||
termit \
|
termit \
|
||||||
nvidia-tesla-470-alternative \
|
smtube \
|
||||||
systemsettings \
|
audacious \
|
||||||
xterm
|
nvidia* \
|
||||||
|
imagemagick* \
|
||||||
|
yelp
|
||||||
|
|
||||||
|
## 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/kdesystemsettings.desktop \
|
||||||
|
/usr/share/applications/systemsettings.desktop \
|
||||||
|
/usr/share/applications/calamares.desktop.orig \
|
||||||
|
/usr/share/applications/xfce4-mail-reader.desktop \
|
||||||
|
/usr/share/applications/xfce4-web-browser.desktop \
|
||||||
|
|
||||||
|
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.
|
# Lowers the footprint in RAM at the small expense of added size to the ISO.
|
||||||
#update-icon-caches /usr/share/icons/*
|
#update-icon-caches /usr/share/icons/*
|
||||||
|
@ -32,4 +53,3 @@ flatpak remote-add --if-not-exists flathub https://flathub.org/repo/flathub.flat
|
||||||
|
|
||||||
#add-architecture i386
|
#add-architecture i386
|
||||||
dpkg --add-architecture i386
|
dpkg --add-architecture i386
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue