(Feature Request) Command Line Interface
Closed this issue · 5 comments
My header may be completely wrong for what I am thinking so I will describe it here.
What I am looking for is a way to write a shell script that when ran will open up a particular program in a particular 'container' inside winegui.
I set up winegui with a game server application designed for windows and it works perfectly. The problem is that if I attempt to open the server.exe without going through winegui it will attempt to run in regular wine which doesn't work for some reason.
Try to execute your application like so:
WINEPREFIX=/home/username/.winegui/prefixes/name wine /path/to/your/server.exe
So that will then use the WINEPREFIX
environment variable from bare wine executable. Which is the standard of using plain wine command line 😊.
Meaning Winegui will not try to vendor lock you in the application. Allowing you full access to the wine command line as well.
@rdnckreaper And did that work for you?
You could just start the server by executing the VRisingServer.exe
file directly: wine VRisingServer.exe
.
There is also a bat file present I think called start_server_example.bat
, which can be execute via either: wine start <bat file>
or wine cmd /c <bat file>
And of course the WINEPREFIX=...
can still be put in front of all the wine
commands.