mirror of
https://github.com/archlinuxarm/PKGBUILDs.git
synced 2025-01-07 23:24:05 +00:00
17 lines
365 B
Text
17 lines
365 B
Text
|
post_install() {
|
||
|
update-desktop-database -q
|
||
|
gtk-update-icon-cache -q -t -f usr/share/icons/hicolor
|
||
|
|
||
|
echo "==> To use docky, make sure your compoisiting manager is"
|
||
|
echo "==> running before launching gnome-do."
|
||
|
}
|
||
|
|
||
|
post_upgrade() {
|
||
|
post_install $1
|
||
|
}
|
||
|
|
||
|
post_remove() {
|
||
|
update-desktop-database -q
|
||
|
gtk-update-icon-cache -q -t -f usr/share/icons/hicolor
|
||
|
}
|