fix: fixed lid config

This commit is contained in:
2025-07-22 08:30:15 +02:00
parent 11f4ef5beb
commit b5bb61b431
6 changed files with 32 additions and 6 deletions

View File

@@ -3,10 +3,18 @@
LAPTOP_OUTPUT="eDP-1"
LID_STATE_FILE="/proc/acpi/button/lid/LID0/state"
# Resume previous state
read -r LS < "$LID_STATE_FILE"
case "$LS" in
*open) swaymsg output "$LAPTOP_OUTPUT" enable ;;
*closed) swaymsg output "$LAPTOP_OUTPUT" disable ;;
*) echo "Could not get lid state" >&2 ; exit 1 ;;
*open)
swaymsg output "$LAPTOP_OUTPUT" enable
;;
*closed)
swaymsg output "$LAPTOP_OUTPUT" disable
systemctl suspend
;;
*)
echo "Could not get lid state" >&2
exit 1
;;
esac