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) .