configs/desktop/scripts/sfp.sh
Lucas Barbieri b55a2629fb move scripts to the right dir
turns out i was dumping them in 2 different places lmao
2024-01-16 13:08:59 -03:00

13 lines
200 B
Bash
Executable File

#!/bin/bash
sfp="/tmp/sfp"
if [ -f "$sfp" ]; then
rm $sfp
else
/yang/docs/SFP_UI-linux-x64-SelfContained/SFP_UI &
echo "$!" > "$sfp"
sleep 1
fi
steam --noverifyfiles -cef-enable-debugging &