mirror of
https://github.com/archlinuxarm/PKGBUILDs.git
synced 2024-12-08 23:03:46 +00:00
14 lines
299 B
Bash
Executable file
14 lines
299 B
Bash
Executable file
#!/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
|
|
|
|
|