nsf / termbox-go

Pure Go termbox implementation

Home Page:http://godoc.org/github.com/nsf/termbox-go

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

API to change size of screen

varunrau opened this issue · comments

I'd like to be able to set a custom size, so that the entire terminal isn't taken over when termbox is active. Is that possible?

The current workaround I'm exploring is opening up a separate tmux pane and running the program there.

commented

No, I can't see how this can be done. Termbox assumes it has full control over terminal. If it's not true then there is always a risk of being out of sync. Tmux as an option, or I suggest to forget about terminals and use alternative GUI options. Such as HTML. Don't go crazy over terminal interfaces, terminals are not the end of the world.

ah bummer, oh well!