blob: 6ec605aa73079c382db8dab1853fb09a6e3b8c97 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
post_install() {
cd /usr/share/icons/
find -type d -name "elementary-xfce*" -exec gtk-update-icon-cache -qtf {} \;
}
post_upgrade() {
post_install
}
post_remove() {
post_install
}
pre_remove() {
cd /usr/share/icons/
find -type f -path "./elementary-xfce*/icon-theme.cache" -delete
}
|