No description
Find a file
2023-02-20 14:28:49 +01:00
.github feat(ci): add MacOS to CI (#60) 2023-02-17 12:59:18 +01:00
assets chore: remove scripts 2018-09-09 08:53:37 +02:00
examples fix: Fix user_input example double key press registered on windows 2023-02-15 22:52:08 +01:00
src feat(widget): add offset() to TableState (#10) 2023-02-18 03:11:34 +01:00
tests feat(widgets/chart): add option to control alignment of axis labels (#568) 2021-12-23 19:02:10 +01:00
.gitignore gitignore 2019-05-17 14:25:55 +02:00
Cargo.toml chore: update rust-version to 1.59 in Cargo.toml (#57) 2023-02-16 08:38:30 +05:30
CHANGELOG.md Release v0.19.0 2022-08-14 15:38:31 +02:00
CONTRIBUTING.md docs(contributing): specify the use of unsafe for optimization (#67) 2023-02-20 14:28:49 +01:00
LICENSE Add README, LICENSE and update demo 2016-11-07 01:07:53 +01:00
Makefile.toml chore(ci): re-enable clippy on CI (#59) 2023-02-16 18:51:54 +05:30
README.md docs(readme): add poketex to 'apps using tui' in README (#64) 2023-02-19 12:42:09 +01:00

tui-rs

Build Status Crate Status Docs Status

Demo cast under Linux Termite with Inconsolata font 12pt

What is this fork?

This fork was created to continue maintenance on the original TUI project. The original maintainer had created an issue explaining how he couldn't find time to continue development, which led to us creating this fork. From here, we hope to continue developing the TUI crate.

In order to organize ourselves, we have created a temporary discord server. We have not yet determined with the community what will be our definitive communication medium.

Please make sure you read the updated contributing guidelines, especially if you are interested in working on a PR or issue opened in the previous repository.

Introduction

tui-rs is a Rust library to build rich terminal user interfaces and dashboards. It is heavily inspired by the Javascript library blessed-contrib and the Go library termui.

The library supports multiple backends:

The library is based on the principle of immediate rendering with intermediate buffers. This means that at each new frame you should build all widgets that are supposed to be part of the UI. While providing a great flexibility for rich and interactive UI, this may introduce overhead for highly dynamic content. So, the implementation try to minimize the number of ansi escapes sequences generated to draw the updated UI. In practice, given the speed of Rust the overhead rather comes from the terminal emulator than the library itself.

Moreover, the library does not provide any input handling nor any event system and you may rely on the previously cited libraries to achieve such features.

Rust version requirements

Since version 0.17.0, tui requires rustc version 1.59.0 or greater.

Documentation

The documentation can be found on docs.rs.

Demo

The demo shown in the gif can be run with all available backends.

# crossterm
cargo run --example demo --release -- --tick-rate 200
# termion
cargo run --example demo --no-default-features --features=termion --release -- --tick-rate 200

where tick-rate is the UI refresh rate in ms.

The UI code is in examples/demo/ui.rs while the application state is in examples/demo/app.rs.

If the user interface contains glyphs that are not displayed correctly by your terminal, you may want to run the demo without those symbols:

cargo run --example demo --release -- --tick-rate 200 --enhanced-graphics false

Widgets

Built in

The library comes with the following list of widgets:

Click on each item to see the source of the example. Run the examples with with cargo (e.g. to run the gauge example cargo run --example gauge), and quit by pressing q.

You can run all examples by running cargo make run-examples (require cargo-make that can be installed with cargo install cargo-make).

Third-party libraries, bootstrapping templates and widgets

  • ansi-to-tui — Convert ansi colored text to tui::text::Text
  • color-to-tui — Parse hex colors to tui::style::Color
  • rust-tui-template — A template for bootstrapping a Rust TUI application with Tui-rs & crossterm
  • simple-tui-rs — A simple example tui-rs app
  • tui-builder — Batteries-included MVC framework for Tui-rs + Crossterm apps
  • tui-clap — Use clap-rs together with Tui-rs
  • tui-log — Example of how to use logging with Tui-rs
  • tui-logger — Logger and Widget for Tui-rs
  • tui-realm — Tui-rs framework to build stateful applications with a React/Elm inspired approach
  • tui-realm-treeview — Treeview component for Tui-realm
  • tui tree widget — Tree Widget for Tui-rs
  • tui-windows — Tui-rs abstraction to handle multiple windows and their rendering
  • tui-textarea: Simple yet powerful multi-line text editor widget supporting several key shortcuts, undo/redo, text search, etc.
  • tui-rs-tree-widgets: Widget for tree data structures.
  • tui-input: TUI input library supporting multiple backends and tui-rs.

Apps using tui

  • adsb_deku/radar — Rust ADS-B decoder + TUI radar application
  • bandwhich — Terminal utility for displaying current network utilization by process, connection and remote IP/hostname
  • battleship.rs — A terminal battleship game in Rust
  • bottom — Yet another cross-platform graphical process/system monitor
  • conclusive — Command line client for Plausible Analytics
  • cotp — Trustworthy, encrypted, command-line TOTP/HOTP authenticator app with import functionality
  • cube timer — A tui-based Rubik's cube timer written in Rust
  • desed — Debugger for Sed: demystify and debug your sed scripts, from comfort of your terminal
  • diskonaut — Terminal disk space navigator
  • exhaust — Exhaust all your possibilities.. for the next coming exam
  • game-of-life-rs — Conway's Game of Life implemented in Rust and visualized with Tui-rs
  • gitui — Blazing fast terminal-ui for Git written in Rust
  • gpg-tui — Manage your GnuPG keys with ease!
  • gping — Ping, but with a graph
  • joshuto — Ranger-like terminal file manager written in Rust
  • kDash — A simple and fast dashboard for Kubernetes
  • kmon — Linux Kernel Manager and Activity Monitor
  • minesweep — Sweep some mines for fun, and probably not for profit
  • oha — HTTP load generator, inspired by rakyll/hey with tui animation
  • poketex — A simple pokedex based on TUI
  • rrtop — Redis monitoring (top like) app
  • rust-sadari-cli — Sadari game based on terminal
  • rusty-krab-manager — Time-management TUI in Rust
  • spotify-tui — Spotify for the terminal written in Rust
  • taskwarrior-tui — A terminal user interface for Taskwarrior
  • termchat — Terminal chat through the LAN with video streaming and file transfer
  • termscp — A feature rich terminal UI file transfer and explorer with support for SCP/SFTP/FTP/S3
  • tick-rs — Realtime ticker data in your terminal
  • tsuchita — Client-server notification center for dbus desktop notifications
  • tuinance — Display financial data on the terminal
  • vector — A lightweight, ultra-fast tool for building observability pipelines
  • xplr — A hackable, minimal, fast TUI file explorer
  • ytop — A TUI system monitor written in Rust (no longer maintained)
  • zenith — Sort of like top or htop but with zoom-able charts, CPU, GPU, network, and disk usage

Alternatives

You might want to checkout Cursive for an alternative solution to build text user interfaces in Rust.

License

MIT