All Projects → fdehau → Tui Rs

fdehau / Tui Rs

Licence: mit
Build terminal user interfaces and dashboards using Rust

Programming Languages

rust
11053 projects

Projects that are alternatives of or similar to Tui Rs

Wtf
The personal information dashboard for your terminal
Stars: ✭ 12,973 (+113.34%)
Mutual labels:  terminal, tui, dashboard
Kubebox
⎈❏ Terminal and Web console for Kubernetes
Stars: ✭ 1,855 (-69.5%)
Mutual labels:  terminal, tui, dashboard
Devdash
🍱 Highly Configurable Terminal Dashboard for Developers and Creators
Stars: ✭ 939 (-84.56%)
Mutual labels:  terminal, tui, dashboard
Goaccess
GoAccess is a real-time web log analyzer and interactive viewer that runs in a terminal in *nix systems or through your browser.
Stars: ✭ 14,096 (+131.8%)
Mutual labels:  terminal, tui, dashboard
Gitui
Blazing 💥 fast terminal-ui for git written in rust 🦀
Stars: ✭ 6,762 (+11.2%)
Mutual labels:  terminal, tui
Rtv
Browse Reddit from your terminal
Stars: ✭ 4,558 (-25.05%)
Mutual labels:  terminal, tui
Sad
CLI search and replace | Space Age seD
Stars: ✭ 350 (-94.24%)
Mutual labels:  terminal, tui
Fltrdr
A TUI text reader for the terminal.
Stars: ✭ 477 (-92.16%)
Mutual labels:  terminal, tui
Spotui
Spotify in the terminal 💻🎶
Stars: ✭ 302 (-95.03%)
Mutual labels:  terminal, tui
Stig
TUI and CLI for the BitTorrent client Transmission
Stars: ✭ 360 (-94.08%)
Mutual labels:  terminal, tui
Castero
TUI podcast client for the terminal
Stars: ✭ 375 (-93.83%)
Mutual labels:  terminal, tui
Peaclock
A responsive and customizable clock, timer, and stopwatch for the terminal.
Stars: ✭ 314 (-94.84%)
Mutual labels:  terminal, tui
Termox
C++17 Terminal User Interface(TUI) Library.
Stars: ✭ 306 (-94.97%)
Mutual labels:  terminal, tui
Ticker
Terminal stock ticker with live updates and position tracking
Stars: ✭ 3,986 (-34.45%)
Mutual labels:  terminal, tui
Fff
📁 A simple file manager written in bash.
Stars: ✭ 3,445 (-43.35%)
Mutual labels:  terminal, tui
Ratatouille
A TUI (terminal UI) kit for Elixir
Stars: ✭ 373 (-93.87%)
Mutual labels:  terminal, tui
Ftxui
💻 C++ Functional Terminal User Interface. ❤️
Stars: ✭ 433 (-92.88%)
Mutual labels:  terminal, tui
Amfora
A fancy terminal browser for the Gemini protocol.
Stars: ✭ 395 (-93.5%)
Mutual labels:  terminal, tui
Pulsemixer
CLI and curses mixer for PulseAudio
Stars: ✭ 441 (-92.75%)
Mutual labels:  terminal, tui
Pxltrm
🖌️ pxltrm - [WIP] A pixel art editor inside the terminal
Stars: ✭ 459 (-92.45%)
Mutual labels:  terminal, tui

tui-rs

Build Status Crate Status Docs Status

Demo cast under Linux Termite with Inconsolata font 12pt

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.52.1 or greater.

Documentation

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

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 widgets

Apps using tui

Alternatives

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

License

MIT

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].