On Sun, 12 Apr 2009 11:29:06 +0500, you wrote:
Currently the only way to lauch such applications is either to use terminal and cd to working directory and then run application, or create custom bash launcher,
Third option:
In the existing launcher instead of:
wine "X:\pathto\program.exe"
change to:
sh -c 'cd somepath && wine "X:\pathto\program.exe"'
Works here using Gnome. Not very user-friendly either perhaps.
Rein.