mirror of
https://github.com/fscotto/infra.git
synced 2026-07-29 16:20:01 +00:00
Fix Hyprland lock DPMS
This commit is contained in:
14
dotfiles/desktop/.config/hypr/scripts/lock-and-dpms
Executable file
14
dotfiles/desktop/.config/hypr/scripts/lock-and-dpms
Executable file
@@ -0,0 +1,14 @@
|
||||
#!/bin/sh
|
||||
# Lock the session, then power off outputs only if the lock is still active.
|
||||
|
||||
set -eu
|
||||
|
||||
lock_delay="${HYPRLOCK_DPMS_DELAY:-30}"
|
||||
|
||||
loginctl lock-session
|
||||
|
||||
(
|
||||
sleep "$lock_delay"
|
||||
pidof hyprlock >/dev/null 2>&1 || exit 0
|
||||
hyprctl dispatch dpms off
|
||||
) >/tmp/hyprlock-dpms.log 2>&1 &
|
||||
Reference in New Issue
Block a user