blob: 0d1a505c6bf16183bd15e96375569f058864adb0 (
plain)
1
2
3
4
5
6
7
8
9
|
#!/bin/sh
# shell script wrapper for quackle SBo build (WTFPL).
# the game doesn't appear to write to its current directory, all
# preferences get saved to ~/.config/Quackle.org/Quackle.conf
# so we don't need a private per-user directory here.
cd /usr/share/games/quackle
exec /usr/libexec/quackle/quackle "$@"
|