Update icon and application database after install
This commit is contained in:
@@ -0,0 +1,9 @@
|
||||
Package: gbm
|
||||
Architecture: all
|
||||
Maintainer: Sebastian Riedel <git@basxto.de>
|
||||
Priority: optional
|
||||
Version: 1.0.5
|
||||
Homepage: https://mikemaximus.github.io/gbm-web/
|
||||
Bugs: https://github.com/MikeMaximus/gbm/issues
|
||||
Depends: mono-vbnc, libsqlite3-0, p7zip-full
|
||||
Description: Automatically backup your saved games!
|
||||
Executable
+13
@@ -0,0 +1,13 @@
|
||||
#!/bin/sh
|
||||
set -e
|
||||
|
||||
XDG_DESKTOP_MENU="`which xdg-desktop-menu 2> /dev/null`"
|
||||
XDG_ICON_RESOURCE="`which xdg-icon-resource 2> /dev/null`"
|
||||
|
||||
if [ -x "$XDG_DESKTOP_MENU" ]; then
|
||||
xdg-desktop-menu forceupdate --mode system;
|
||||
fi
|
||||
|
||||
if [ -x "$XDG_ICON_RESOURCE" ]; then
|
||||
xdg-icon-resource forceupdate --mode system;
|
||||
fi
|
||||
Reference in New Issue
Block a user