Hydrogen Helix runs fantastic on OSX.
Any plans for implementing the terminal buttons? (Tab for filling in, and up arrow for last command)?
Thanks!
rlwrap works on Linux (mentioned at the end of the README file). I don't know if there is an equivalent utility on OSX.
If you have Homebrew (if not, get it, it's the best!) you can
brew install rlwrap.
Now when you start up simplewallet in the terminal instead enter
rlwrap ./simplewallet to launch simplewallet with rlwrap. You can now use up and down arrows to cycle through your history of commands, but no tab autocompletion.
I will update this post when I figure out how to add commands to the rlwrap completion dictionary...
Next you'll probably want to add an alias for starting simplewallet so you don't have to type rlwrap ./simplewallet every time. So add a line in your .bash_profile like this:
alias simplewallet="cd path/to/bitmonero/build/release/bin && rlwrap ./simplewallet"