mirror of
https://github.com/Ponce/slackbuilds
synced 2024-11-24 10:02:29 +01:00
10 lines
314 B
Bash
10 lines
314 B
Bash
|
#!/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 "$@"
|