From 6c99347a62111f6ca23bf16c841d2cf1673b69b6 Mon Sep 17 00:00:00 2001 From: JaKooLit Date: Fri, 13 Sep 2024 11:03:20 +0900 Subject: custom idle inhibitor on waybar which kills hypridle when toggled --- config/hypr/scripts/Hypridle.sh | 23 +++++++++++++++++++++++ 1 file changed, 23 insertions(+) create mode 100755 config/hypr/scripts/Hypridle.sh (limited to 'config/hypr/scripts/Hypridle.sh') diff --git a/config/hypr/scripts/Hypridle.sh b/config/hypr/scripts/Hypridle.sh new file mode 100755 index 00000000..56176716 --- /dev/null +++ b/config/hypr/scripts/Hypridle.sh @@ -0,0 +1,23 @@ +#!/bin/bash +# /* ---- 💫 https://github.com/JaKooLit 💫 ---- */ ## +# This is for custom version of waybar idle_inhibitor which activates / deactivates hypridle instead + +PROCESS="hypridle" + +if [[ "$1" == "status" ]]; then + sleep 1 + if pgrep -x "$PROCESS" >/dev/null; then + echo '{"text": "RUNNING", "class": "active", "tooltip": "idle_inhibitor NOT ACTIVE\nLeft Click: Activate\nRight Click: Lock Screen"}' + else + echo '{"text": "NOT RUNNING", "class": "notactive", "tooltip": "idle_inhibitor is ACTIVE\nLeft Click: Deactivate\nRight Click: Lock Screen"}' + fi +elif [[ "$1" == "toggle" ]]; then + if pgrep -x "$PROCESS" >/dev/null; then + pkill "$PROCESS" + else + "$PROCESS" + fi +else + echo "Usage: $0 {status|toggle}" + exit 1 +fi -- cgit v1.2.3