just some basic actions

This commit is contained in:
jenzur 2020-01-26 02:29:34 +01:00
parent d8741ce6d3
commit e9bf88f984

View File

@ -20,13 +20,13 @@ from time import sleep
#-nopreload seemingly prevents from joining servers
#cd /home/nonroot/.steam/
#./steam.sh -applaunch 240 -textmode -novid -nosound -noipx -nojoy -noshaderapi -condebug +exec looptest.cfg
#./steam.sh -applaunch 240 -textmode -textmessagedebug -novid -nosound -noipx -nojoy -noshaderapi -condebug +exec looptest.cfg
#
def joinsteam():
subprocess.Popen(["steam", "-login", "username","password"])
sleep(25)
subprocess.Popen(["/home/nonroot/.steam/steam.sh", "-applaunch 240 -textmode -novid -nosound -noipx -nojoy -noshaderapi -condebug +exec looptest.cfg"])
subprocess.Popen(["/home/nonroot/.steam/steam.sh", "-applaunch 240 -textmode -textmessagedebug -novid -nosound -noipx -nojoy -noshaderapi -condebug +exec looptest.cfg"])
if __name__ == '__main__':
joinsteam()