47 lines
1.2 KiB
Plaintext
47 lines
1.2 KiB
Plaintext
|
#!/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
|
||
|
apt --purge --yes autoremove \
|
||
|
vim \
|
||
|
vim-tiny \
|
||
|
murrine-themes \
|
||
|
termit \
|
||
|
gnome-shell \
|
||
|
gdm3 \
|
||
|
ubuntu-session \
|
||
|
mutter \
|
||
|
gnome-control-center \
|
||
|
gnome-control-center-data \
|
||
|
gnome-control-center-faces \
|
||
|
gnome-online-accounts \
|
||
|
gedit \
|
||
|
apport \
|
||
|
update-notifier-common \
|
||
|
update-notifier
|
||
|
|
||
|
# 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
|
||
|
|
||
|
#fix network-manager install
|
||
|
dpkg-reconfigure network-manager
|
||
|
|
||
|
#fix lightdm install
|
||
|
dpkg-reconfigure lightdm
|
||
|
|
||
|
|
||
|
#add-architecture i386
|
||
|
dpkg --add-architecture i386
|
||
|
|