8 lines
122 B
Bash
Executable file
8 lines
122 B
Bash
Executable file
#!/bin/bash
|
|
|
|
inhibit_active=false
|
|
if pgrep eww-idle-inhibi;then
|
|
inhibit_active=true
|
|
fi
|
|
|
|
printf '%s' "${inhibit_active}"
|