7 lines
141 B
Bash
Executable File
7 lines
141 B
Bash
Executable File
#!/usr/bin/env bash
|
|
if grep -q open /proc/acpi/button/lid/LID/state; then
|
|
swaymsg output eDP-2 enable
|
|
else
|
|
swaymsg output eDP-2 disable
|
|
fi
|