elementary-xfce-icon-theme: Add a post-install script

The new post-install script updates all icon theme cache
files so that no theme has missing icons.

Signed-off-by: Leo Unglaub <leo@leo-unglaub.net>
This commit is contained in:
Leo Unglaub 2015-03-08 14:47:12 +00:00
parent 7998120edf
commit 91f30916d2

View File

@ -0,0 +1,10 @@
#!/bin/sh
#
# post-install: update all icon theme cache files
# find all themes
for theme in /usr/share/icons/*
do
gtk-update-icon-cache $theme
done