1
0
mirror of https://github.com/danog/ytop.git synced 2024-11-26 20:15:03 +01:00
Go to file
2019-07-27 19:01:32 -07:00
.github/ISSUE_TEMPLATE Initial commit 2019-07-20 17:57:40 -07:00
ci Convert spaces to tabs 2019-07-26 20:28:16 -07:00
colorschemes Initial commit 2019-07-20 17:57:40 -07:00
src Implement statusbar 2019-07-27 19:01:32 -07:00
.editorconfig Convert spaces to tabs 2019-07-26 20:28:16 -07:00
.gitignore Initial commit 2019-07-20 17:57:40 -07:00
.rustfmt.toml Convert spaces to tabs 2019-07-26 20:28:16 -07:00
.travis.yml Convert spaces to tabs 2019-07-26 20:28:16 -07:00
Cargo.lock Implement statusbar 2019-07-27 19:01:32 -07:00
Cargo.toml Implement statusbar 2019-07-27 19:01:32 -07:00
CHANGELOG.md Initial commit 2019-07-20 17:57:40 -07:00
LICENSE Initial commit 2019-07-20 17:57:40 -07:00
README.md Implement help menu rendering 2019-07-27 17:29:01 -07:00

rtop

Another TUI based resource monitor, this time in Rust! Currently a WIP.

Usage

Keybinds

  • Quit: q or <C-c>
  • Process navigation:
    • k and <Up>: up
    • j and <Down>: down
    • <C-u>: half page up
    • <C-d>: half page down
    • <C-b>: full page up
    • <C-f>: full page down
    • gg and <Home>: jump to top
    • G and <End>: jump to bottom
  • Process actions:
    • <Tab>: toggle process grouping
    • dd: kill selected process or process group
  • Process sorting:
    • c: CPU
    • m: Mem
    • p: PID
  • Process filtering:
    • /: start editing filter
    • (while editing):
      • <Enter>: accept filter
      • <C-c> and <Escape>: clear filter
  • CPU and Mem graph scaling:
    • h: scale in
    • l: scale out
  • ?: toggles keybind help menu

Mouse

  • click to select process
  • mouse wheel to scroll through processes

Colorschemes

rtop ships with a few colorschemes which can be set with the -c flag followed by the name of one. You can find all the colorschemes in the colorschemes folder.

To make a custom colorscheme, copy one of the default ones to ~/.config/rtop/<new-name>.json and load it with rtop -c <new-name>. Colorschemes PRs are welcome!

CLI Options

USAGE:
    rtop [FLAGS] [OPTIONS]

FLAGS:
    -a, --average-cpu    Show average CPU in the CPU widget.
    -b, --battery        Show Battery widget (overridden by 'minimal' flag).
    -f, --fahrenheit     Show temperatures in fahrenheit.
    -h, --help           Prints help information
    -m, --minimal        Only show the CPU, Mem, and Process widgets.
    -p, --per-cpu        Show each CPU in the CPU widget.
    -s, --statusbar      Show a statusbar with the time.
    -V, --version        Prints version information

OPTIONS:
    -c, --colorscheme <colorscheme>    Set a colorscheme. [default: default]
    -i, --interfaces <interfaces>      Comma separated list of network interfaces to show. Prepend an interface with '!'
                                       to hide it. 'all' shows all interfaces. [default: !tun0]
    -r, --rate <rate>                  Number of times per second to update the CPU and Mem widgets. [default: 1]