diff options
author | Holger Paradies <retabell@gmx.de> | 2013-06-21 20:25:19 +0200 |
---|---|---|
committer | Andreas Loibl <andreas@andreas-loibl.de> | 2013-09-03 19:57:25 +0200 |
commit | ec306adff7b17bd49f6b50001b44699054ba80ef (patch) | |
tree | 89185878efaf9825e9cf82ed9b4b24f10b0cd7e9 /kanotix-lxde-extra/kanotix-lxde-upstart | |
parent | 4cded8443241ef62951580bd7619a8fbb7e87bb4 (diff) | |
download | kanotix-packages-ec306adff7b17bd49f6b50001b44699054ba80ef.zip kanotix-packages-ec306adff7b17bd49f6b50001b44699054ba80ef.tar.gz |
Version 0.2.2
Diffstat (limited to 'kanotix-lxde-extra/kanotix-lxde-upstart')
-rw-r--r-- | kanotix-lxde-extra/kanotix-lxde-upstart | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/kanotix-lxde-extra/kanotix-lxde-upstart b/kanotix-lxde-extra/kanotix-lxde-upstart new file mode 100644 index 0000000..ec5dcb5 --- /dev/null +++ b/kanotix-lxde-extra/kanotix-lxde-upstart @@ -0,0 +1,10 @@ +#!/bin/sh + +# generate icon-cache deleted in live-build +if ! [ -e /usr/share/icons/nuoveXT2/icon-theme.cache ]; then +find /usr/share/icons -mindepth 1 -maxdepth 1 -type d | while read -r ICON; do +if [ -f "$ICON/index.theme" ]; then + gtk-update-icon-cache-3.0 -f -q "$ICON" +fi +done +fi |