A backend-agnostic application framework
Go to file
Sasha Koshka 3a3fb66db8 Buffer is thread safe 2022-11-15 17:45:48 -05:00
assets Added icon setting 2022-11-10 02:02:08 -05:00
backends/x There is only one type of buffer now 2022-11-15 17:36:41 -05:00
examples Made buffer's dot private 2022-11-15 17:41:08 -05:00
LICENSE Added license 2022-11-15 00:27:30 -05:00
README.md Add info about X backend to readme 2022-11-12 17:40:08 +00:00
application.go There is only one type of buffer now 2022-11-15 17:36:41 -05:00
backend.go Applications can now manually call a screen redraw in a way that I think is thread safe 2022-11-11 22:30:59 -05:00
buffer.go Buffer is thread safe 2022-11-15 17:45:48 -05:00
config.go There is only one type of buffer now 2022-11-15 17:36:41 -05:00
event.go Added documentation 2022-11-15 00:22:01 -05:00
go.mod Remove pixel backend 2022-11-11 20:27:51 -05:00
go.sum Remove pixel backend 2022-11-11 20:27:51 -05:00
input.go Added documentation 2022-11-15 00:22:01 -05:00

README.md

stone

Stone is a backend-agnostic application framework designed to:

  • Combine the simplicity and ease of development inherent to TUI programs with the extended capabilities of GUI programs
  • Be adaptable to run virtually anywhere

Currently, the only supported backend is X, but it is very easy to write and link your own. Stone will automatically run through the list of registered backends and instantiate the first one that doesn't throw an error.