Files
2026-09-02 16:02:11 -04:00

10 lines
157 B
Bash

#!/usr/bin/env bash
run_with_optional_gamemode() {
if command -v gamemoderun &> /dev/null; then
gamemoderun "$@"
else
"$@"
fi
}