From e369d16efd1a7dd061b78ec6f38cd53f1c68b238 Mon Sep 17 00:00:00 2001 From: Clement Tsang <34804052+ClementTsang@users.noreply.github.com> Date: Mon, 30 Dec 2019 21:05:39 -0500 Subject: [PATCH] Update readme and travis --- .travis.yml | 16 ++++++++++++++-- README.md | 16 +++++++++++++++- 2 files changed, 29 insertions(+), 3 deletions(-) diff --git a/.travis.yml b/.travis.yml index c8ef1147..fa3b7dc0 100644 --- a/.travis.yml +++ b/.travis.yml @@ -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 diff --git a/README.md b/README.md index 4d02d521..3f1b7379 100644 --- a/README.md +++ b/README.md @@ -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) .