blob: 755ddb851542d01c06612dbf9f762e0c2f122b57 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
#!/bin/sh
# koules.kde
# Wrapper script to launch koules from a KDE shortcut
# Author: B. Watson (yalhcru@gmail.com)
# If the GUI launcher can't run (probably because Tcl/Tk isn't
# installed), just start the game with default options.
# Wrap with artsdsp, since koules only knows how to use OSS /dev/dsp
# style audio (if it used ALSA, dmix would take care of us).
artsdsp -n Koules koules-launcher || artsdsp -n Koules koules
|