Terminal system monitor in Gleam — htop × btop
1

Configure Feed

Select the types of activity you want to include in your feed.

monitor / src / monitor.gleam
333 B 11 lines
1//// monitor — a Gleam system monitor between htop and btop. 2//// 3//// * btop-style CPU/memory meters, sparklines, and color bands 4//// * htop-style process table (PID, USER, PRI, NI, VIRT, RES, S, CPU%, MEM%, TIME+, Command) 5//// * sort, filter, kill, keyboard + mouse navigation 6 7import app 8 9pub fn main() -> Nil { 10 app.run() 11}