blob: e026be8321427e66c11345fb001cf4c3fcad4da6 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
// Presentation mode.
//
// waybar's own idle_inhibitor module draws its state with format-icons, which
// is text, so this is an `image` module driving the same inhibitor through
// hyprland. The state lives in a file because the icon has to be resolved by
// a separate process from the one that toggles it.
{
"image#idle": {
"exec": "$HOME/bin/wb-idle status",
"size": 22,
"interval": 5,
"signal": 9,
"on-click": "$HOME/bin/wb-idle toggle"
}
}
|