diff options
-rwxr-xr-x | gnome-device-manager/post-install | 13 |
1 files changed, 12 insertions, 1 deletions
diff --git a/gnome-device-manager/post-install b/gnome-device-manager/post-install index 7ab8335..2748256 100755 --- a/gnome-device-manager/post-install +++ b/gnome-device-manager/post-install @@ -1,8 +1,19 @@ #!/bin/sh -port=alacarte +port=gnome-device-manager + +# scrolls +SCROLLS="`pkginfo -l $port | grep usr/share/omf/.*\.omf$`" + +for SCROLL in $SCROLLS +do + scrollkeeper-install -q -p /var/lib/scrollkeeper /$SCROLL > /dev/null +done # desktop database update-desktop-database > /dev/null +# icon cache +gtk-update-icon-cache -q -t -f /usr/share/icons/hicolor + # End of file |