Is it possible to make grafic icon to start comand "wine win.exe" on Mac Os? It will pleasent to start without Terminal...
Bazilisk wrote:> Is it possible to make grafic icon to start comand "wine win.exe" on Mac Os? > It will pleasent to start without Terminal...yes... I wrote a small way to do so in the FAQ by making an Applescript .app launcher... http://wiki.winehq.org/MacOSX/FAQs#head-f1c814a8ca500350af40d817fc3b7ffc87fd3911 not terribly easy, but you should be able to figure it out... just have to edit the code slightly.
doh123 wrote:> > yes... I wrote a small way to do so in the FAQ by making an Applescript .app launcher....I just updated the FAQ, I wrote that so long ago, it was kinda tough to use... so i re-wrote a better applescript there you can use thats much easier to edit for what you need.
2 problems I installed wine thru MacPorts and can not sure about /path/to/wine Code: #! /bin/sh export WINEPREFIX=$HOME/.wine export DYLD_FALLBACK_LIBRARY_PATH=/usr/X11/lib cd "/path/to/my/app" && exec wine "myapp.exe" I put wine without /path/to/ becouse I can not find it :( I save it as soft.config When I try to start it Mac asked about default application for .config I selected Terminal (not sure what is correct) When I click on soft.config - myapp.exe dont started :( May be wrong path to wine, may be wrong application to run config. What the correct choise?