An open API service indexing awesome lists of open source software.

https://github.com/pekim/dull

A text user interface library.
https://github.com/pekim/dull

go text-user-interface tui

Last synced: 2 months ago
JSON representation

A text user interface library.

Awesome Lists containing this project

README

          

# dull

[![GoDoc](https://godoc.org/github.com/pekim/dull?status.svg)](https://godoc.org/github.com/pekim/dull)
[![Go Report Card](https://goreportcard.com/badge/github.com/pekim/dull)](https://goreportcard.com/report/github.com/pekim/dull)

`dull` is a text user interface library.
It provides a means of writing applications with windows
that display a grid of cells.
The windows bear a resemblance to terminal windows, but the similarity
is purely visual.

**warning :** dull is currently just an experiment, and is not ready for prime time.

## pre-requisites

* `go` - essential
* `make` - nice to have

## getting started

```bash
go get -v -u github.com/pekim/dull
cd $GOPATH/src/github.com/pekim/dull

# install required go tools, and dull packages
make install

# run a simple demo
make run_simple
```

## documentation

[godoc.org/github.com/pekim/dull](https://godoc.org/github.com/pekim/dull)