My-distro-configs-dev-openbox/hooks/normal/0520-applications.hook.chroot

56 lines
1.6 KiB
Plaintext
Raw Normal View History

2024-01-12 11:51:06 -01:00
#!/bin/bash
################################################################################
# Title: 0520-applications.hook.chroot
# Description: Script to remove packages and other things
# Author: manuel rosa <manuelsilvarosa@gmail.com>
# Date: Outubro 29, 2023
# License: GPL-3.0-or-later
################################################################################
# Remove software
2024-01-29 13:39:54 -01:00
apt --purge --yes autoremove \
2024-01-12 11:51:06 -01:00
nautilus \
hv3 \
mpv \
murrine-themes \
2024-01-29 13:39:54 -01:00
smplayer \
deluge \
picom \
gnome-calculator \
2024-01-12 11:51:06 -01:00
konsole \
malcontent \
termit \
2024-01-29 13:39:54 -01:00
smtube \
audacious \
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
2024-01-12 11:51:06 -01:00
# 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 {} \;
#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