blob: d5a86349ac00e62730c3ec2c21fb6c865d15871e (
plain)
1
2
3
4
5
6
7
|
#!/bin/sh
cd /opt/dwarf-fortress
# export SDL_DISABLE_LOCK_KEYS=1 # Work around for bug in Debian/Ubuntu SDL patch.
#export SDL_VIDEO_CENTERED=1 # Centre the screen. Messes up resizing.
umask 0002 # Make sure that any saves created get 775/664
exec ./libs/Dwarf_Fortress "$@"
|