Thanks!
It works perfectly and so it is only a matter of modifying the launch script at lines 31 and 33, right?
else if [ "$ARCH" == "x86_64" ]; then TERM=xterm ./NeuroVoider.bin.x86_64 $@ else TERM=xterm ./NeuroVoider.bin.x86 $@ fi fi
Should work.
Or:
else TERM=xterm if [ "$ARCH" == "x86_64" ]; then ./NeuroVoider.bin.x86_64 $@ else ./NeuroVoider.bin.x86 $@ fi fi
Ah yeah! More elegant!
The script could use a simple patch then.