New version update with UI and UX overhauled. Added mplayer launching to video thumbnail images too. Fixed some loading issues and file type checks too.

This commit is contained in:
Maxim Stewart
2016-10-22 22:21:10 -05:00
parent 3c61f0b890
commit 0f0980d337
45 changed files with 835 additions and 1 deletions

View File

@@ -0,0 +1,20 @@
#!/bin/bash
#postrm (script executed after uninstalling the package)
#set -e
if [ -f /bin/fxwinwrap ]; then
rm /bin/fxwinwrap
fi
if [ -d /opt/FXWinWrap ]; then
rm -rf /bin/fxwinwrap
fi
if [ -x "`which xdg-desktop-menu 2>/dev/null`" ]; then
xdg-desktop-menu uninstall /usr/share/applications/FXWinWrap.desktop
xdg-desktop-menu forceupdate --mode user
fi
if [ -x "`which update-menus 2>/dev/null`" ]; then
update-menus
fi