├── .github └── workflows │ └── build.yml ├── .gitignore ├── Cargo.lock ├── Cargo.toml ├── LICENSE ├── Makefile ├── README.md ├── aw-watcher-window-wayland.desktop ├── protocols ├── ext-idle-notify-v1.xml ├── idle.xml └── wlr-foreign-toplevel-management-unstable-v1.xml └── src ├── build.rs ├── current_window.rs ├── idle.rs ├── main.rs ├── singleinstance.rs └── wl_client.rs /.github/workflows/build.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ActivityWatch/aw-watcher-window-wayland/HEAD/.github/workflows/build.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | /target 2 | **/*.rs.bk 3 | 4 | src/protocols 5 | -------------------------------------------------------------------------------- /Cargo.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ActivityWatch/aw-watcher-window-wayland/HEAD/Cargo.lock -------------------------------------------------------------------------------- /Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ActivityWatch/aw-watcher-window-wayland/HEAD/Cargo.toml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ActivityWatch/aw-watcher-window-wayland/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ActivityWatch/aw-watcher-window-wayland/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ActivityWatch/aw-watcher-window-wayland/HEAD/README.md -------------------------------------------------------------------------------- /aw-watcher-window-wayland.desktop: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ActivityWatch/aw-watcher-window-wayland/HEAD/aw-watcher-window-wayland.desktop -------------------------------------------------------------------------------- /protocols/ext-idle-notify-v1.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ActivityWatch/aw-watcher-window-wayland/HEAD/protocols/ext-idle-notify-v1.xml -------------------------------------------------------------------------------- /protocols/idle.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ActivityWatch/aw-watcher-window-wayland/HEAD/protocols/idle.xml -------------------------------------------------------------------------------- /protocols/wlr-foreign-toplevel-management-unstable-v1.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ActivityWatch/aw-watcher-window-wayland/HEAD/protocols/wlr-foreign-toplevel-management-unstable-v1.xml -------------------------------------------------------------------------------- /src/build.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ActivityWatch/aw-watcher-window-wayland/HEAD/src/build.rs -------------------------------------------------------------------------------- /src/current_window.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ActivityWatch/aw-watcher-window-wayland/HEAD/src/current_window.rs -------------------------------------------------------------------------------- /src/idle.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ActivityWatch/aw-watcher-window-wayland/HEAD/src/idle.rs -------------------------------------------------------------------------------- /src/main.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ActivityWatch/aw-watcher-window-wayland/HEAD/src/main.rs -------------------------------------------------------------------------------- /src/singleinstance.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ActivityWatch/aw-watcher-window-wayland/HEAD/src/singleinstance.rs -------------------------------------------------------------------------------- /src/wl_client.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ActivityWatch/aw-watcher-window-wayland/HEAD/src/wl_client.rs --------------------------------------------------------------------------------