dotfiles/de/home/.config/eww/scripts/bar/inhibit-status
2025-03-05 21:00:06 -08:00

8 lines
151 B
Bash
Executable file

#!/bin/bash
inhibit_active='false'
if ps aux | grep eww-idle-inhibit | grep -qv grep;then
inhibit_active='true'
fi
printf '%s' "${inhibit_active}"