blob: 1f844702f2bd9d9e74ad6957c908c2b7d4dc0531 (
plain) (
tree)
|
|
#!/bin/sh
xrandr --output DP-3 --auto --primary --output DP-2 --off
doas sysctl hw.acpi.lid_switch_state=S3
killall xautolock
xautolock \
-killtime 10 \
-killer "sleep 0.5; doas acpiconf -s3" \
-notify 10 \
-time 10 \
-locker "i3lock -n -f -c 002b36 ; sleep 0.2" \
-notifier "notify-send -t=10000 '10 seconds to lock...'" &
|