You are not logged in.
In the wiki there are 3 seperate comments on launching and i want to combine them all.
This is the first one.
#!/bin/bash
# WINE binary
CDLOADER_WINE="wine"
# Steam directory
STEAMDIR="$HOME/.wine/drive_c/Program Files/Steam"
cd "$STEAMDIR"
$CDLOADER_WINE "steam.exe" -- "$@"
I want to add this part to the script.
WINEDEBUG="-all" nice -n -8 wine steam.exe
I just dont know where to insert that in the launcher.
I also want to put this part in there, but i dont know where.
DISPLAY=:1.0
xinit $HOME/steam.sh $* -- :1
Thanks!
Last edited by axion419 (2008-01-17 20:09:54)
Offline
Since Steam needs OSS (some games at least), I recommend an 'aoss' in there too.
This is my steam launcher:
#!/bin/bash
#paths files has latest wine version location
source "$HOME/.paths"
WINEDEBUG="-all" nice -n -8 aoss wine C:/Steam/Steam.exe "$@"
For your setup, try this
#! /bin/bash
Xorg :1.0 &
DISPLAY=":1.0" WINEDEBUG="-all" nice -n -8 wine C:/Steam/Steam.exe "$@"
#or with aoss
#DISPLAY=":1.0" WINEDEBUG="-all" nice -n -8 aoss wine C:/Steam/Steam.exe "$@"
Offline
thanks!
Offline