View Single Post
  #47  
Old 04-16-2022, 04:23 PM
Rabcor Rabcor is offline
Scrawny Gnoll


Join Date: Mar 2022
Location: Field of Bone
Posts: 25
Send a message via MSN to Rabcor
Default

That script seems like maybe a bit much, I just installed it via lutris then configured lutris to use a pre-launch script to start a midi synthesizer (qsynth) for working audio and Zaela's login helper:

Quote:
#!/bin/sh


if pgrep "qsynth" > /dev/null; then
:
else
/usr/bin/qsynth &>/dev/null
fi


if pgrep "p99-login" > /dev/null; then
exit
else
$HOME/Scripts/p99-login-middlemand &>/dev/null
fi

Then a post-exit script when i close the game:

Quote:
#!/bin/sh

pkill qsynth
pkill p99-login
Honestly i'm a bit surprised Zaela's login helper isn't part of the lutris installer, it really should be. It's a godsend, I almost gave up on playing until i found out about it.
Reply With Quote