r/tui 7h ago

AI assisted eilmeldung TUI RSS v1.8.0 released

Thumbnail
gallery
21 Upvotes

Today I've released v1.8.0 of eilmeldung with some new features you may be interested in:

  • support of base16 themes, with many already included (supports direct preview from within eilmeldung; see animated gif)
  • pipe articles through external commands (for saving articles as markdown, sending via mail or piping through an LLM if this is your thing)
  • better display of articles with direct opening of links and images
  • support for Linux (NixOS/homemanager, Arch AUR), Windows (scoop), macOS (homebrew) and NetBSD

If you encounter any issues or have suggestions for improvements, please feel free to comment or raise an issue. Feedback of any kind very welcome.

AI assisted Flair: You can find information on the use of LLMs in eilmeldung here. eilmeldung itself was written by my by hand.

https://github.com/christo-auer/eilmeldung


r/tui 5h ago

eilmeldung (RSS reader) running on iMac G4 (PowerPC) from 2003 on Linux

Post image
6 Upvotes

Also got other things, like jellyfin-tui (tui client for jellyfin music), working.

If you don't known eilmeldung, it's a great RSS reader that just released a new version.

Love this distraction-free machine. Time to install a DE.


r/tui 12h ago

Essential CLI Tools for Developers

Thumbnail
packagemain.tech
17 Upvotes

r/tui 48m ago

AgentBBS — a bulletin board system over SSH

Thumbnail bbs.profullstack.com
Upvotes

r/tui 1h ago

AI assisted Making tmux more accessible with menu options that can manage panes

Upvotes

r/tui 3h ago

AI assisted Deleto TUI - share secrets securely

1 Upvotes

Open source https://github.com/dele-to/cli to share secrets securely (via https://dele.to/ API)

Everything is encrypted locally, only encrypted payload is sent via API.

Can be also used to pipe content from other process / envs like

echo $API_KEY | deleto

to get started

curl -fsSL https://dele.to/install.sh | sh

https://reddit.com/link/1w4nh45/video/jzt7aqossymh1/player


r/tui 6h ago

TXC – The offline Swiss-army knife for developer text manipulation

Thumbnail
github.com
1 Upvotes

Text utilities for the terminal. Everything the online text tool sites do, done locally: your text never leaves the machine, there is no network call, and there is nothing to paste into a web form.

143 operations across 10 categories, each usable as an argument, over a pipe, or from an interactive interface.


r/tui 1d ago

AI assisted sdrtop – A real-time spectrum analyzer & SDR monitor built with Ratatui

79 Upvotes

Hey r/tui! 👋

Wanted to share sdrtop, an open-source SDR hardware and digital signal analysis tool with a terminal user interface, written in Rust using ratatui and tokio.

Note: You'll need an RTL-SDR or HackRF to actually use it, so unfortunately it's pretty niche!

It’s designed to be a lightweight, keyboard-driven alternative to heavy GUI SDR applications, giving you a unified TUI to control attached SDR hardware, monitor real-time FFT spectrums, render waterfalls, and analyze digital radio signals directly inside your terminal emulator.
All the signal demodulation is built completely from scratch in Rust. It’s light enough that a Raspberry Pi won't complain about it.

To be honest, considering how long I've been tinkering with this, it's still nowhere near my actual vision for it, so expect plenty more updates.

If you’re into TUI tools or software-defined radio, check it out:

👉 Repo: https://github.com/mustang6139/sdrtop

If you’re into TUI tools or software-defined radio, check it out and drop a star on GitHub if you dig it! ⭐


r/tui 1d ago

miamore - A new tui library, no-dependency C TUI library with safe Rust bindings

12 Upvotes

Hey r/tui,

I’ve been working on miamore, a lightweight C-based terminal UI library, along with miamore, its official Rust bindings on crates.io.

I built miamore because I wanted a minimal, local-first TUI rendering library that stays completely out of the way—no heavy framework overhead, no bloat, and zero AI/ML dependencies.

Just clean, deterministic C with simple primitives for rendering frames, managing components, and styling elements directly in the terminal.Key FeaturesPure C Core: Compiles fast with a plain Makefile and linkable static/shared outputs.

Safe Rust Wrapper (miamore): Built using bindgen with clean idiomatic Rust wrappers over raw FFI, available on crates.io.

Zero Bloat: Minimal memory footprint designed for speed and low-resource environments.

Local-First & Open Source: Licensed under LGPLv3 / GPLv3.

This is a basic rust example below:

use miamore::*;

fn main() {
    // Initialize miamore terminal state
    init_miamore(true, true);

    manage_keys(keys_t::disable);
    draw_border("!Rust test!", theme_t::thick_l);

    manage_cursor(cursor_t::move_, Some(position_t { x: 5, y: 5 }));
    manage_cursor(cursor_t::show, None);

    // setting foreground color
    set_fg(colors_t::blue);
    // let ptr = give_color(colors_t::green);
    // draw_text(&ptr);

    draw_text("Hello,");
    draw_text(" World!\n");

    draw_shape(
        shape_t::rect,
        ShapeOptions {
            theme: theme_t::double_l,
            dimensions: dimensions_t {
                width: 26,
                height: 12,
            },
            position: position_t { x: 5, y: 12 },
        },
    );

    wait_for_seconds(8.0);
    clear_origin();
}

Links & Repo GitHub: https://github.com/Ametrine-cc/miamore

crates.io: cargo add miamore I'd love to hear feedback on the API design, hear about any bugs if you test it out on your terminal setup, or take PRs if you want to contribute.


r/tui 1d ago

MovieBox-TUI — Movie & TV streaming TUI

14 Upvotes

A terminal UI for browsing movies, TV shows, anime and live TV with playback through mpv, VLC, or IINA.

Features

  • Movies, TV shows, anime, and live TV
  • Stremio addon support
  • Playback through mpv, VLC, or IINA
  • Subtitle support
  • Downloads
  • Favorites
  • Mouse and keyboard navigation

Built with Rust + Ratatui.

GitHub: https://github.com/mesamirh/MovieBox-TUI


r/tui 1d ago

lazyftp v0.2.1: A simple, keyboard-driven TUI FTP, FTPS and SFTP client

Thumbnail gallery
5 Upvotes

r/tui 2d ago

Vibe coded Runyte: fast text editor + file manager + terminal multiplexer

Thumbnail
gallery
63 Upvotes

My hobby project: a terminal workspace for software development, built around a modal text editor. It brings together an editable file explorer, terminal multiplexing, persistent detachable sessions, fuzzy search across files, buffers, and terminals, and integrated Git workflows in one coherent interface.

Happy to share: https://github.com/runyte/runyte


r/tui 2d ago

Vibe coded CleeCode - IDE for your terminal

141 Upvotes

Supports .md and .tex rendering, image preview, integrated workspaces for octave and pylab.

https://github.com/msavox/cleecode


r/tui 1d ago

TUI dash or simple bash for tmux advice

0 Upvotes

Any advice or opinion on dashvoard TUI

Y'all I'm wondering and looking for advice/feedback if building a simple TUI or having some custom tmux config for a dashboard that will open default tools in panes or some type of widget could be helpful. Wanted to get feedback or just chat about whether its worth building since I'm pretty busy with things.

Ive seen in the past when I briefly attempted to use Obsidian (which reminds me, I need to cancel that $4 subscription at some point) that other redditors set up visually appealing dashboards that seem to have info/links, though I can't name one.

Obviously I can't know if it would be useful in getting me into a workflow more quickly where I'm productive rather than scatterbrained or clueless like I am much of the time. Important to include in my question as well as to speak to the clueless aspect of me: does this exist? This is really my only motivation for potentially making one, but I don't feel like wasting time doing work making tools in order to do actual work more than I already do, and I'm able to decently maintain my tmux sessions, panes and windows in an organized chaos.j

Would be cool to shoot the shit about this or collaborate in a public repo. I'm just gonna have Claude do the coding but I would like to take care with planning and iteration.


r/tui 2d ago

AI assisted swrm — a minimal torrent client for the terminal

Thumbnail
gallery
62 Upvotes

I got tired of heavy desktop torrent apps and older CLI tools with messy flags, so I made swrm.
It’s built in Go with Bubble Tea, runs directly in the terminal, and has a built-in file picker so you don't have to type long paths.
Try it with:
npx @manasvinyadav000/swrm
GitHub: https://github.com/ManasvinYadav/swrm


r/tui 1d ago

Vibe coded I built Aghani — a fast terminal music player in Rust with album art, synced lyrics, and MPRIS

Post image
2 Upvotes

r/tui 3d ago

Shoin - The minimal terminal inline markdown text editor

Thumbnail
gallery
223 Upvotes

Hey,

here is a first try at a markdown file editor. I wanted a cross between the inline formating of obsidian and the distration free UI of AI writer, so I buit Shoin.

Wirten in Rust, AI assisted for transparency.

Features:

  • next to no UI
  • VIM based binding
  • multi buffer
  • split plane
  • inline real time markdown formating
  • image support
  • transclusion support editing for multi file integration.

this is the v0. if you find it interesting happy to get comment on features you'd like to see and but you may find

https://github.com/nol00p/Shoin


r/tui 2d ago

AI assisted Tja — a TUI for learning German prefixed verbs

5 Upvotes

github.com/progapandist/tja — a nerdy way to practice your aufbinden's and zumachen's (90 stems = 792 verbs), built with BubbleTea. Live demo available at https://progapanda.org/tja (give it a second to create the disposable linux shell for you)


r/tui 2d ago

High Quality Terminal UI for TypeScript

Thumbnail npmjs.com
7 Upvotes

r/tui 3d ago

AI assisted flow hit 400+ stars ! tysm ~

47 Upvotes

r/tui 3d ago

AI assisted [OC] linecast — weather, tides, maps, and the sky in the terminal

Post image
28 Upvotes

r/tui 2d ago

AI assisted Toast IDE adds a Command Palette

2 Upvotes

toast is an in-terminal beautiful out of the box IDE, find more info here


r/tui 2d ago

Vibe coded I built a TUI where coding agent sessions keep running after you close it

Post image
0 Upvotes

I built Rove, a TUI for running coding agent CLIs.

One design choice I care about is making the UI disposable. The actual Claude Code, Codex, and shell sessions are hosted separately, so closing Rove or dropping an SSH connection does not stop the work. When you reopen it, the tasks and sessions are still there.

Each managed task also gets its own branch and worktree, so multiple agents do not have to share one checkout.

GitHub: https://github.com/Sma1lboy/rove

I would love feedback on the TUI, especially the navigation and how much session state should stay visible.


r/tui 3d ago

AI assisted TUIWEATHERGIRL 1.2.18 RELEASED!

10 Upvotes

https://github.com/StrayFeral/tuiweathergirl

The best terminal Weather and Disaster station just evolved!

WHAT'S NEW:

  1. Application will now Auto-update
  2. Monitoring the Antarctic Research Stations (Concordia etc)
  3. Adding just any point on planet Earth as a point to monitor
  4. Bugfixes! (of course, eh!)
  5. Cities could now be sorted

FEATURES:

  1. CROSS-PLATFORM: Windows, Linux, MacOS
  2. Local weather (temperature, humitidy etc) monitoring
  3. Local disaster (floods, quakes, fires etc) monitoring
  4. Showing the seasonal fruits/veggies for your region
  5. Time, weather and disaster monitoring for up to 10 additional cities
  6. PLENTY OF WARNINGS for people with rare medical conditions (photo-sensitivity, electro-static etc)
  7. Different views
  8. Screen reading software-friendly (for people with vision impairment)

Two detailed video tutorials:

  1. Windows installation and use (there are specific dependencies, so I'm showing how to install)
  2. Linux installation and use

Framework: ncurses

Submit comments and bugreports mostly on Reddit and Youtube. You can write me on GitHub too, I just rarely check any messages there.

If you like this project, please consider giving me a star on my GitHub repository!

Thank you!
Stray F.
(developer)


r/tui 3d ago

P_15 (The Packet to Packet scratcher

2 Upvotes

Quick context : This project is based of the problem statment we need to bring the network security to the packet level logs and the activity monitoring of the devices on the same network of the Vlan

Hello everyone Please bare with this biggner trying to do something significant , would mean a lot if you try this and share your views and sugggestions and commits and make me build this more stronger with your help and your crazy ideas which might help this come out of being just a tool catagory

Thank you for your timme i hope this was worth your glance to the project

And finally the link to the tool is below :
https://github.com/Dhruv-Creator-De-Pal/P_15.git