mirror of
https://github.com/arthur-pbty/arthur-os.git
synced 2026-08-05 12:42:29 +02:00
8 lines
159 B
Bash
Executable File
8 lines
159 B
Bash
Executable File
#!/bin/bash
|
|
|
|
if pgrep -x hypridle >/dev/null; then
|
|
echo '{"text": ""}'
|
|
else
|
|
echo '{"text": "", "tooltip": "Idle lock disabled", "class": "active"}'
|
|
fi
|