8 lines
		
	
	
		
			305 B
		
	
	
	
		
			Bash
		
	
			
		
		
	
	
			8 lines
		
	
	
		
			305 B
		
	
	
	
		
			Bash
		
	
#!/bin/sh
 | 
						|
DF_DIR=$(dirname "$0")
 | 
						|
cd "${DF_DIR}"
 | 
						|
export LD_LIBRARY_PATH=$LD_LIBRARY_PATH:"./hack/libs":"./hack"
 | 
						|
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.
 | 
						|
./libs/Dwarf_Fortress $* # Go, go, go! :)
 |