7 lines
386 B
Text
7 lines
386 B
Text
(defvar inhibit_active false)
|
|
|
|
(defwidget idleinhibit []
|
|
(box
|
|
:class "idle-inhibitor ${inhibit_active ? 'active' : 'inactive'}"
|
|
(button :onclick {inhibit_active ? 'killall eww-idle-inhibit;eww update inhibit_active=false' : 'systemd-inhibit --what="idle" --mode="block" scripts/bar/eww-idle-inhibit & eww update inhibit_active=true'}
|
|
{inhibit_active ? "" : ""})))
|