This commit is contained in:
Stephan Raabe 2024-05-29 20:13:30 +02:00
parent 8f1a563bf0
commit 6304aea7d5

10
hypr/scripts/hypridle.sh Executable file
View File

@ -0,0 +1,10 @@
#!/bin/bash
SERVICE="hypridle"
if [[ "$1" == "status" ]]; then
if pgrep -x "$SERVICE" >/dev/null ;then
echo ":: $SERVICE is running"
else
echo ":: $SERVICE is not running"
fi
fi