https://github.com/davatorium/rofi-top
https://github.com/davatorium/rofi-top
Last synced: 11 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/davatorium/rofi-top
- Owner: davatorium
- License: mit
- Created: 2019-03-23T10:33:33.000Z (about 7 years ago)
- Default Branch: master
- Last Pushed: 2022-07-24T11:53:56.000Z (almost 4 years ago)
- Last Synced: 2025-06-08T18:03:08.046Z (about 1 year ago)
- Language: C
- Size: 196 KB
- Stars: 23
- Watchers: 4
- Forks: 3
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: COPYING
Awesome Lists containing this project
README
# Rofi Top - interactive process viewer
A plugin for rofi that emulates top behaviour.
To run this you need an up to date checkout of rofi git installed.
Run rofi like:
```bash
rofi -show top -modi top
```
## Screenshot

## Keybindings
The following keybindings change sorting:
| Keybinding | Sort item |
|------------|----------------|
| `custom-1` | Memory |
| `custom-2` | Pid |
| `custom-3` | CPU Time |
| `custom-4` | Name |
| `custom-5` | CPU Percentage |
Repeatingly selecting the entry will change sort order.
The current setting is not stored between consecutive runs.
## Compilation
### Dependencies
| Dependency | Version |
|------------|---------|
| libgtop | 2.34 |
| rofi | 1.4 |
### Installation
**Rofi-top** uses autotools as build system. If installing from git, the following steps should install it:
```bash
$ autoreconf -i
$ mkdir build
$ cd build/
$ ../configure
$ make
$ make install
```