I had to reinstall my Java compiler a while back, so I know I broke something. Now when I execute a program in Geany (pressing F5) it produces a geany_run_script.sh
script in my working directory. The contents of the script:
#!/bin/sh
rm $0
java "boltzmann"
echo "
------------------
(program exited with code: $?)"
echo "Press return to continue"
#to be more compatible with shells like dash
dummy_var=""
read dummy_var
...this should be run a terminal automatically, but isn't. I poked around in the Preferences, but couldn't determine where to fix this. Suggestions would be appreciated.