mirror of
https://github.com/archlinuxarm/PKGBUILDs.git
synced 2024-12-08 23:03:46 +00:00
15 lines
299 B
Text
15 lines
299 B
Text
|
#!/bin/sh
|
||
|
|
||
|
WIDTH=1024
|
||
|
HEIGHT=768
|
||
|
[ -f /etc/conf.d/sauerbraten ] && . /etc/conf.d/sauerbraten
|
||
|
|
||
|
cd /opt/sauerbraten
|
||
|
if [ -f /usr/bin/aoss ]; then
|
||
|
aoss bin/linux_client -w$WIDTH -h$HEIGHT -q${HOME}/.config/sauerbraten -r
|
||
|
else
|
||
|
bin/linux_client -w$WIDTH -h$HEIGHT -q${HOME}/.config/sauerbraten -r
|
||
|
fi
|
||
|
|
||
|
|