14 lines
593 B
Plaintext
14 lines
593 B
Plaintext
|
#!/bin/bash
|
||
|
|
||
|
################################################################################
|
||
|
# Title: 9098-rebuild-icon-caches.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
|
||
|
################################################################################
|
||
|
|
||
|
# 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 {} \;
|