12 lines
150 B
Bash
Executable File
12 lines
150 B
Bash
Executable File
#!/bin/bash
|
|
|
|
NM=$(pidof gammastep)
|
|
|
|
if [[ $NM > 0 ]]; then
|
|
killall gammastep
|
|
else
|
|
gammastep -b 1:0.9 -l 56.01:92.86 -t 5600:4500 &
|
|
fi
|
|
|
|
exit 0
|