blob: 96d224c1f961b10f414dd5d0657d3642a4514451 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
#! /bin/sh
gtk-update-icon-cache -f /usr/share/icons/hicolor
# Now we are ready to let the user move the entry around, but only if
# this is a new install
if [ `which maemo-select-menu-location` ]; then
oldversion="$2"
if [ -z "$oldversion" ]; then
maemo-select-menu-location nethack.desktop
fi
fi
#DEBHELPER#
exit 0
|