From b725c587d285d99ab2a0b8514f9f976e1ec676fb Mon Sep 17 00:00:00 2001 From: Don Williams Date: Sun, 26 Jul 2026 21:40:49 -0400 Subject: Added script for Hyprlang config to handle LidSwitch Signed-off-by: Don Williams On branch development Your branch is up to date with 'origin/development'. Changes to be committed: modified: config/hypr/UserConfigs/Laptops.conf new file: config/hypr/scripts/LidSwitch.sh --- config/hypr/scripts/LidSwitch.sh | 15 +++++++++++++++ 1 file changed, 15 insertions(+) create mode 100755 config/hypr/scripts/LidSwitch.sh (limited to 'config/hypr/scripts/LidSwitch.sh') diff --git a/config/hypr/scripts/LidSwitch.sh b/config/hypr/scripts/LidSwitch.sh new file mode 100755 index 00000000..2a3fc3eb --- /dev/null +++ b/config/hypr/scripts/LidSwitch.sh @@ -0,0 +1,15 @@ +#!/usr/bin/env bash +# ================================================== +# KoolDots (2026) - Laptop Lid Switch Handler +# ================================================== + +ACTION="${1:-check}" +LOGFILE="/tmp/hypr_lid.log" + +echo "$(date '+%Y-%m-%d %H:%M:%S') - Lid event triggered: $ACTION" >> "$LOGFILE" + +if [ "$ACTION" = "close" ]; then + hyprctl keyword monitor "eDP-1, disable" >> "$LOGFILE" 2>&1 +elif [ "$ACTION" = "open" ]; then + hyprctl keyword monitor "eDP-1, preferred, auto, 1" >> "$LOGFILE" 2>&1 +fi -- cgit v1.2.3