bottom

Build Status crates.io link

A top clone, written in Rust. Inspired by both gtop and gotop

Quick demo recording Note that the background you see is not part of the app, that's just because I use a slightly transparent terminal.

Installation

Linux

You can install by cloning and using cargo build --release, or download the pre-compiled binary in Releases. Note this needs the nightly toolchain if you are building.

Windows

You can currently install by cloning and building yourself. Note this needs the nightly toolchain if you are building.

MacOS

Currently, I'm unable to really dev or test on MacOS, so I'm not sure how well this will work, if at all. I'll try to source MacOS hardware to test this application.

Usage

Command line options

Keybinds

General

Processes Panel

Mouse Actions

Regarding Process Use Percentage (on Linux)

I cannot guarantee whether they are 100% accurate. I'm using a technique I found online which seems to be a better indicator of process use percentage at the current time, rather than pulling from, say, ps (which is average CPU usage over the entire lifespan of the process). I found the options from the library I used to get other data (heim) to be a bit too inaccurate in my testing.

For reference, the formula I am using to calculate CPU process usage is along the lines of:

```rust let idle = idle + iowait; let non_idle = user + nice + system + irq + softirq + steal + guest;

let total = idle + nonidle; let prevtotal = previdle + prevnon_idle; // Both of these values are calculated using the same formula from the previous polling

let totaldelta : f64 = total - prevtotal; let idledelta : f64 = idle - previdle;

let finaldelta : f64 = totaldelta - idle_delta;

//...

// Get utime and stime from reading /proc//stat let afterprocval = utime + stime; (afterprocval - beforeprocval) / cpuusage * 100f64; //This gives your use percentage. beforeprocval comes from the previous polling ```

Any suggestions on more accurate data is welcome! Note all other fields should be accurate.

Thanks

Why

I was looking to try writing more things in Rust, and I love the gotop tool. And thus, this project was born.