blob: 10b7ed551e7c82090e742bb7ce92a022be3c4aa3 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
#!/bin/sh
# koules.kde
# Wrapper script to launch koules from a KDE shortcut
# Author: B. Watson (urchlay@slackware.uk)
# If the GUI launcher can't run (probably because Tcl/Tk isn't
# installed), just start the game with default options.
# This script used to use artsdsp to make the dumb old OSS sound code
# in the game play nice with KDE's sound server. Apparently this is no
# longer necessary in KDE 4 (at least, it seems to work for me without it).
koules-launcher || koules
|