1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38
|
# swayidle
This is sway's idle management daemon, swayidle. It is compatible with any
Wayland compositor which implements the
[ext-idle-notify](https://gitlab.freedesktop.org/wayland/wayland-protocols/-/tree/main/staging/ext-idle-notify)
protocol. See the man page, [swayidle(1)](./swayidle.1.scd), for instructions
on configuring swayidle.
## Release Signatures
Releases are signed with [34FF9526](https://keys.openpgp.org/search?q=34FF9526CFEF0E97A340E2E40FDE7BE0E88F5E48)
and published [on GitHub](https://github.com/swaywm/swayidle/releases). swayidle
releases are managed independently of sway releases.
## Installation
### From Packages
Swayidle is available in many distributions. Try installing the "swayidle"
package for yours.
### Compiling from Source
Install dependencies:
* meson \*
* wayland
* wayland-protocols \*
* [scdoc](https://git.sr.ht/~sircmpwn/scdoc) (optional: man pages) \*
* git \*
_\* Compile-time dependency_
Run these commands:
meson build/
ninja -C build/
sudo ninja -C build/ install
|