I want to modify the 'applicationName'.desktop file (where 'applicationName is the name of your application) to be able to execute from 'First Main Acer Menu' (that could be changed modifing
/home/user/.config/xfce4/desktop/group-app.xml file) some applications that I've extracted into my Downloads Folder such as RapGet (windows version).
RapGet could be executed as a param of wine application that emulate windows application under linux, so I think that I have to make a script file that invoke wine and rapget.
I noticed that other default acer applications are put in
/usr/share/applications/ so I opened supertux.desktop application in order to understand how is make this .desktop file:
- Code: Select all
[Desktop Entry]
Type=Application
Version=1.0
Encoding=UFT-8
Name=SuperTux
...
Comment=A Super Mario insipred penguin platform game
...
Icon=supertux.png
Exec=supertux
Terminal=false
...
so It could be easy to add our custom application to the Main Menu adding an 'ad hoc' regGet.desktop file
Type=Application
Version=1.0
Encoding=UFT-8
Name=RapGet
...
Comment=Megaupload and Rapidshare download manager
...
Icon=rapget.png
Exec=wine_rapGet
Terminal=false
wine_rapGet script is something like this:
wine /RAPGET_PATH/rapGet.exe [where /RAPGET_PATH/ is the path of your application... for example for me is /home/user/apps/]
rapget.png is the icon file associated with the application and I don't understand well where I have to put it.
Do you have any suggestions?