How Do You Issue a Filename to Open in Open With? I want to allow win32's Repligo to open .rgo files in KDE. The string I'm using but doesn't work is ; Code: env WINEPREFIX="/home/default/.wine" wine "C:\Program Files\Cerience\RepliGo Viewer\RepliGoView.exe" %U Repligo is a fantastic PDF style document viewer and especially fast and good for PDA's. You can get the viewer from cerience.com . The viewer works in KDE/Kubuntu just I want to be able to right mouse menu to open them with. Thanks for any help. I've tried various combinations.
vitamin
2008-Jul-01 01:10 UTC
[Wine] Re: How Do You Issue a Filename to Open in Open With?
ThreeDays wrote:> How Do You Issue a Filename to Open in Open With? > > I want to allow win32's Repligo to open .rgo files in KDE. The string I'm using but doesn't work is ; > > > Code: > env WINEPREFIX="/home/default/.wine" wine "C:\Program Files\Cerience\RepliGo Viewer\RepliGoView.exe" %U > > > > Repligo is a fantastic PDF style document viewer and especially fast and good for PDA's. You can get the viewer from http://cerience.com/ . The viewer works in KDE/Kubuntu but I just want to be able to right mouse menu to open them with. The viewer also has a printer drivers for windows to allow you to print to RGO format. Not sure if that works in Wine. I use the Cerience Mobilizer to convert pdf's. > > Thanks for any help. I've tried various combinations.http://wiki.winehq.org/FAQ#head-68d921c50355f280a905e3574b7dda58d76ff51f
ThreeDays
2008-Jul-01 01:34 UTC
[Wine] Re: How Do You Issue a Filename to Open in Open With?
Thx, but that is the opposite. I want linux to pass its filename to the wine processed application program.
vitamin
2008-Jul-01 02:38 UTC
[Wine] Re: How Do You Issue a Filename to Open in Open With?
ThreeDays wrote:> Thx, but that is the opposite. I want linux to pass its filename to the wine processed application program.Along the same ways, except you use "winepath -w". And if your program even registered to to handle particular file type then all you need is: Code: wine start `winepath -w "$1"`
ThreeDays
2008-Jul-01 03:05 UTC
[Wine] Re: How Do You Issue a Filename to Open in Open With?
dimesio wrote:> http://bugs.winehq.org/show_bug.cgi?id=12380THANKS. (+ to Vitamin too.) This worked from the link dimesio listed! Code: env WINEPREFIX="/home/USERNAMECHGME/.wine" wine start.exe /Unix %U Substitute your username... Thanks again guys.