You are not logged in.

#1 2008-01-16 22:30:51

axion419
Member
Registered: 2007-04-12
Posts: 185

Question about Steam/Wine Launcher[Solved]

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

#2 2008-01-16 22:55:50

Gilneas
Member
From: Netherlands
Registered: 2006-10-22
Posts: 320

Re: Question about Steam/Wine Launcher[Solved]

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

#3 2008-01-17 20:09:42

axion419
Member
Registered: 2007-04-12
Posts: 185

Re: Question about Steam/Wine Launcher[Solved]

thanks!

Offline

Board footer

Powered by FluxBB