text maze.conf - ThomasTheSpaceFox/Text-Maze-2 GitHub Wiki
As of v2.2, text-maze-2 has a configuration file.
this specifies various settings of the program.
the config file is named:
text-maze.conf
First is the control settings. where "w" would mean pressing the "w" key.
Please note that the key map is case sensitive.
# controls
#up/forward
UKEY="w"
#down/backward
DKEY="s"
#left
LKEY="a"
#right
RKEY="d"
#quit
QUITKEY="q"
next is the system settings area. here you can enable/disable debugging mode. as well as specify a terminal emulator to use. (used by play-text-maze-2.sh to start the program.)
#system settings
#terminal emulator to use
THETERMINATOLUSE="urxvt"
# turn debugging on(1) or off(0)
DEBUG=0