blob: 2dbb738817c0eb6d353ab6862e7990480a4af505 (
plain)
1
2
3
4
5
6
7
8
9
|
#!/bin/bash
# remove path from skript name
lang="${0##*/}"
# remove lure and hyphen from skript name
lang="${lang#lure-}"
# launch scummvm in correct data dir
scummvm "$@" -p /usr/share/lure/$lang lure
|