Update readme and travis

This commit is contained in:
Clement Tsang 2019-12-30 21:05:39 -05:00
parent 8cf895589b
commit e369d16efd
2 changed files with 29 additions and 3 deletions

View file

@ -4,12 +4,10 @@ rust:
- beta
- nightly
os:
- windows
- osx
- linux
env:
- RUST_BACKTRACE=1
- if [ "$TRAVIS_OS_NAME" != "windows" ]; then TARGET=x86_64-pc-windows-msvc; fi
jobs:
allow_failures:
- rust: nightly
@ -27,6 +25,20 @@ before_cache:
- rm -rf /home/travis/.cargo/git
- rm -rf /home/travis/.cargo/registry
matrix:
fast_finish: true
include:
- name: Windows
env: RUST_BACKTRACE=1,TARGET=x86_64-pc-windows-msvc
os: windows
rust:
- stable
- beta
- nightly
before_script: rustup target add $TARGET
script: -cargo build --release --target $TARGET
- cargo test --verbose
notifications:
email:
on_success: never

View file

@ -66,7 +66,7 @@ Note that all options and keybindings on GitHub may reflect the current developm
#### Processes, temperature, and disk panels
- ~~`dd` to kill the selected process~~ Currently disabled in repo
- `dd` to kill the selected process
- `c` to sort by CPU usage. Sorts in descending order by default. Press again to reverse sorting order.
@ -86,6 +86,20 @@ Note that all options and keybindings on GitHub may reflect the current developm
- Scrolling currently only scrolls through the list if the panel is a table (Temperature, Disks, Processes).
## Widget Functionality
### CPU
### Memory
### Sensors
### Disk
### Network
### Processes
## Thanks, kudos, and all the like
- As mentioned, this project is very much inspired by both [gotop](https://github.com/cjbassi/gotop) and [gtop](https://github.com/aksakalli/gtop) .