Files
dotfiles/qtile/refresh.sh
2023-09-20 15:21:44 +09:30

9 lines
165 B
Bash
Executable File

#!/usr/bin/env sh
if [ $(cat /proc/acpi/button/lid/LID0/state | grep -c closed) -eq 1 ]; then
xrandr --output DP-0 --off
else
xrandr --output DP-0 --on
fi