2023-10-29 15:43:55 -01:00
|
|
|
#!/bin/sh -e
|
|
|
|
|
|
|
|
################################################################################
|
2023-11-16 12:32:50 -01:00
|
|
|
# Title: Rebuild icon caches script
|
|
|
|
# Description: This script rebuilds the icon caches after Debian installation.
|
2023-10-29 15:43:55 -01:00
|
|
|
# Author: manuel rosa <manuelsilvarosa@gmail.com>
|
|
|
|
# Date: Outubro 29, 2023
|
|
|
|
# License: GPL-3.0-or-later
|
|
|
|
################################################################################
|
|
|
|
|
2023-11-16 12:32:50 -01:00
|
|
|
# Rebuild the icon caches
|
|
|
|
chroot /target find /usr/share/icons -type d -exec gtk-update-icon-cache -f {} \;
|
2023-10-29 15:43:55 -01:00
|
|
|
|