blob: 556b5c1577e3393935305ec41d13312a7fd859b2 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
# wiz - Wayland Is ZZZing
wiz is meant to be a "suckless" implementation of the Idle Notify protocol. This
means that it is kept as minimal as possible without sacrificing performance
or functionality.
## Building wiz
wiz requires the following dependencies:
```
wayland
wayland-protocols (compile-time only)
pkg-config (compile-time only)
```
Install these (and their `-devel` versions if your distro has separate
development packages) and run `make`.
## Configuration
To change idle events modify `config.h`, and recompile. Additionally you can modify
the `killchild` option to send SIGINTs to old children.
## Acknowledgements
This project would not have been possible without the following project(s):
- swaybg for showing how to implement the Idle Notify protocol
|