2024-08-22 00:44:58 +00:00
|
|
|
#!/usr/bin/env bash
|
|
|
|
|
|
|
|
lockcmd="swaylock -f -i '$HOME/.config/sway/wallpaper/locked.*'"
|
2024-09-04 15:16:11 +00:00
|
|
|
screenoff="swaymsg 'output * power off'"
|
2024-08-22 00:44:58 +00:00
|
|
|
screenon="swaymsg 'output * power on'"
|
|
|
|
|
|
|
|
swayidle -w \
|
|
|
|
lock "$lockcmd" \
|
|
|
|
timeout 300 "$lockcmd" \
|
|
|
|
timeout 600 "$screenoff" \
|
|
|
|
resume "$screenon" \
|
|
|
|
before-sleep "$lockcmd"
|