14 lines
525 B
Bash
Executable File
14 lines
525 B
Bash
Executable File
#!/bin/sh -e
|
|
|
|
################################################################################
|
|
# Title: 07rebuild-icon-caches
|
|
# Description: This script rebuilds the icon caches after Debian installation.
|
|
# Author: manuel rosa <manuelsilvarosa@gmail.com>
|
|
# Date: Outubro 29, 2023
|
|
# License: GPL-3.0-or-later
|
|
################################################################################
|
|
|
|
# Rebuild the icon caches
|
|
chroot /target find /usr/share/icons -type d -exec gtk-update-icon-cache -f {} \;
|
|
|