12 lines
123 B
Bash
Executable File
12 lines
123 B
Bash
Executable File
#!/bin/sh
|
|
|
|
STATE="$(gamemoded -s)"
|
|
|
|
|
|
if [[ "$STATE" != "gamemode is inactive" ]]; then
|
|
echo ""
|
|
else
|
|
echo ""
|
|
fi
|
|
|