21 lines
345 B
Bash
Executable File
21 lines
345 B
Bash
Executable File
#!/bin/sh
|
|
|
|
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
|
|
systemctl suspend
|
|
;;
|
|
*)
|
|
echo "Could not get lid state" >&2
|
|
exit 1
|
|
;;
|
|
esac
|