diff options
author | coadde [Márcio Alexandre Silva Delgado] <coadde@parabola.nu> | 2015-09-16 14:18:34 -0300 |
---|---|---|
committer | coadde [Márcio Alexandre Silva Delgado] <coadde@parabola.nu> | 2015-09-16 14:18:34 -0300 |
commit | e3e6c2dbceae6f3ee3afe4471a6a823495d74cd0 (patch) | |
tree | 843c832370d3cd3b75066a40fd1cb74eb7c3b114 | |
parent | 3f6e87746d262824698ae901bf30d2a83f2c47d3 (diff) |
libre/rave-x-colors: add update-icon-cache.install
-rw-r--r-- | libre/rave-x-colors/update-icon-cache.install | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/libre/rave-x-colors/update-icon-cache.install b/libre/rave-x-colors/update-icon-cache.install new file mode 100644 index 000000000..461e54033 --- /dev/null +++ b/libre/rave-x-colors/update-icon-cache.install @@ -0,0 +1,14 @@ +post_install() { + for dir in usr/share/icons/RAVE*; do + gtk-update-icon-cache -ftq $dir + done +} + +post_upgrade() { + post_install +} + +post_remove() { + post_install +} + |