12 lines
317 B
Bash
Executable File
12 lines
317 B
Bash
Executable File
#!/bin/sh -e
|
|
|
|
# SPDX-License-Identifier: GPL-3.0-or-later
|
|
#
|
|
# SPDX-FileCopyrightText: 2023 PeppermintOS Team (peppermintosteam@proton.me)
|
|
#
|
|
#This script rebuilds the icon caches after Debian installation.
|
|
|
|
# Rebuild the icon caches
|
|
chroot /target find /usr/share/icons -type d -exec gtk-update-icon-cache -f {} \;
|
|
|