Simplify the shit out of swayidle
This commit is contained in:
parent
9f807854fa
commit
1822f7cd83
@ -2,31 +2,14 @@
|
|||||||
#
|
#
|
||||||
# Idle and lock configuration
|
# Idle and lock configuration
|
||||||
#
|
#
|
||||||
# This will lock your screen after 300 seconds of inactivity, then turn off
|
|
||||||
# your displays after another 60 seconds, and turn your screens back on when
|
|
||||||
# resumed. It will also lock your screen before your computer goes to sleep.
|
|
||||||
# The timeouts can be customized via `$lock_timeout` and `$screen_timeout`
|
|
||||||
# variables. For a predictable behavior, keep the `$screen_timeout` value
|
|
||||||
# lesser than the `$lock_timeout`.
|
|
||||||
#
|
|
||||||
# You can also lock the screen manually by running `loginctl lock-session` or
|
|
||||||
# add a binding for the command. Example:
|
|
||||||
# bindsym $mod+Shift+Escape exec loginctl lock-session
|
|
||||||
#
|
|
||||||
# Note that all swaylock customizations are handled via /etc/swaylock/config and
|
|
||||||
# can be overridden via $XDG_CONFIG_HOME/swaylock/config (~/.config/swaylock/config).
|
|
||||||
#
|
|
||||||
# Requires: swayidle
|
|
||||||
# Requires: swaylock
|
|
||||||
# Requires: /usr/bin/pkill, /usr/bin/pgrep
|
|
||||||
|
|
||||||
exec LT="$lock_timeout" ST="$screen_timeout" LT=${LT:-900} ST=${ST:-900} && \
|
exec LT="900" && \
|
||||||
swayidle -w \
|
swayidle -w \
|
||||||
timeout $LT 'swaylock -f' \
|
timeout $LT \
|
||||||
timeout $((LT + ST)) 'swaymsg "output * power off"' \
|
'swaylock -f' \
|
||||||
resume 'swaymsg "output * power on"' \
|
before-sleep \
|
||||||
timeout $ST 'pgrep -xu "$USER" swaylock >/dev/null && swaymsg "output * power off"' \
|
'swaylock -f' \
|
||||||
resume 'pgrep -xu "$USER" swaylock >/dev/null && swaymsg "output * power on"' \
|
lock \
|
||||||
before-sleep 'swaylock -f' \
|
'swaylock -f' \
|
||||||
lock 'swaylock -f' \
|
unlock \
|
||||||
unlock 'pkill -xu "$USER" -SIGUSR1 swaylock'
|
'pkill -xu "$USER" -SIGUSR1 swaylock'
|
||||||
|
Loading…
Reference in New Issue
Block a user