update lxqt hooks
This commit is contained in:
parent
1ed6eb1b45
commit
a6f682d47a
|
@ -6,10 +6,21 @@
|
||||||
# Remove software
|
# Remove software
|
||||||
# apt remove -y firefox-esr
|
# apt remove -y firefox-esr
|
||||||
# apt remove -y termit
|
# apt remove -y termit
|
||||||
apt --purge --yes autoremove vim vim-tiny nautilus hv3 mpv murrine-themes smplayer deluge picom gnome-calculator konsole malcontent termit raspi-firmware systemsettings nvidia*
|
apt --purge --yes autoremove vim vim-tiny nautilus hv3 mpv murrine-themes smplayer deluge picom gnome-calculator konsole malcontent termit raspi-firmware nvidia*
|
||||||
|
|
||||||
|
## 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 \
|
||||||
|
|
||||||
|
do [ -e $i ] &&
|
||||||
|
rm -rf ${i} ||
|
||||||
|
echo " The path ${i} was not found and couldn't be removed."
|
||||||
|
done
|
||||||
|
|
||||||
# Reinstall qml-module-qtquick-layouts to fix desktop appearance
|
|
||||||
apt install -y qml-module-qtquick-layouts
|
|
||||||
|
|
||||||
# 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/*
|
||||||
|
|
|
@ -8,8 +8,18 @@
|
||||||
# apt remove -y termit
|
# apt remove -y termit
|
||||||
apt --purge --yes autoremove vim vim-tiny hv3 mpv murrine-themes smplayer smtube audacious screengrab konsole malcontent termit raspi-firmware nvidia*
|
apt --purge --yes autoremove vim vim-tiny hv3 mpv murrine-themes smplayer smtube audacious screengrab konsole malcontent termit raspi-firmware nvidia*
|
||||||
|
|
||||||
# Reinstall qml-module-qtquick-layouts to fix desktop appearance
|
## This section is the "lint-trap" to remove files and/or
|
||||||
apt install -y qml-module-qtquick-layouts
|
## 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 \
|
||||||
|
|
||||||
|
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/*
|
||||||
|
|
Loading…
Reference in New Issue