summarylogtreecommitdiffstats
path: root/ezquake.launcher
blob: 29d7f8b004f46349d6b1945cf7d7a52c521b0ec0 (plain)
1
2
3
4
5
6
7
8
9
10
#!/bin/bash

cd "/opt/quake"
if [[ "$(uname -m)" == 'x86_64' ]];
then
	/ezquake-gl_linux-x64.glx +cfg_use_home 1 "$@"
else
	./ezquake-linux +cfg_use_home 1 "$@"
fi
exit $?