Compare commits

...

2 commits

Author SHA1 Message Date
2153f7b52b
notifications
All checks were successful
CI / Clippy (push) Successful in 46s
CI / Build (debug) (push) Successful in 47s
CI / Build (release) (push) Successful in 1m35s
CI / Notify (push) Successful in 3s
2026-03-02 15:13:16 -08:00
5cc6e1d168
add system dependency information to README 2026-03-02 14:44:45 -08:00
2 changed files with 21 additions and 1 deletions

View file

@ -91,3 +91,16 @@ jobs:
- name: Build (release) - name: Build (release)
run: cargo build --release run: cargo build --release
notify:
name: Notify
needs: [lint, build-debug, build-release]
runs-on: ubuntu-latest
if: always()
steps:
- uses: https://git.lerch.org/lobo/action-notify-ntfy@v2
with:
host: ${{ secrets.NTFY_HOST }}
topic: ${{ secrets.NTFY_TOPIC }}
user: ${{ secrets.NTFY_USER }}
password: ${{ secrets.NTFY_PASSWORD }}

View file

@ -4,7 +4,14 @@ A weather applet for the [COSMIC](https://github.com/pop-os/cosmic-epoch) deskto
## Building ## Building
Requires a Rust toolchain. Install via [rustup](https://rustup.rs/) if needed. Requires a Rust toolchain and the following system dependencies:
```sh
# Debian/Ubuntu
sudo apt-get install pkg-config libxkbcommon-dev libwayland-dev
```
Install Rust via [rustup](https://rustup.rs/) if needed, then:
```sh ```sh
cargo build --release cargo build --release