- #!/bin/sh
- source ./utils.sh
- #openttd_exe=/usr/local/games/openttd
- openttd_exe=~/dev/packages/OpenTTD-patches/build/openttd
- config_file=~/.openttd/cb_${1}.cfg
- echo "info | conf file ${config_file}"
- check_file_exists "${config_file}"
- ${openttd_exe} -c ${config_file}
|