Compare commits

..

No commits in common. "5c1b447b02a01e78c7907ad00e5ccf8dc2160122" and "455943ef3df96395cda7a751d7d3498075821e60" have entirely different histories.

2 changed files with 6 additions and 8 deletions

View file

@ -11,24 +11,23 @@ general {
after_sleep_cmd = hyprctl dispatch dpms on after_sleep_cmd = hyprctl dispatch dpms on
} }
# Step 1: Dim monitor at 115 sec idle (warning that it will lock soon) # Step 1: Dim monitor at 2.5 min idle (warning that it will lock soon)
listener { listener {
timeout = 115 timeout = 150
# Only dims the screen, does not lock yet # Only dims the screen, does not lock yet
# This shows you that lock will happen soon # This shows you that lock will happen soon
on-timeout = dim on-timeout = dim
on-resume = pkill -x dim
} }
# Step 2: Lock screen at 2 min idle # Step 2: Lock screen at 5 min idle
listener { listener {
timeout = 120 timeout = 300
on-timeout = ~/.config/hypr/scripts/lock.sh on-timeout = ~/.config/hypr/scripts/lock.sh
} }
# Step 3: Turn screen off at 5 min idle # Step 3: Turn screen off at 5.5 min idle
listener { listener {
timeout = 300 timeout = 330
on-timeout = hyprctl dispatch dpms off && ddcutil setvcp 10 0 on-timeout = hyprctl dispatch dpms off && ddcutil setvcp 10 0
# Explanation: # Explanation:

View file

@ -162,7 +162,6 @@ animations {
dwindle { dwindle {
pseudotile = true # Master switch for pseudotiling. Enabling is bound to mainMod + P in the keybinds section below pseudotile = true # Master switch for pseudotiling. Enabling is bound to mainMod + P in the keybinds section below
preserve_split = true # You probably want this preserve_split = true # You probably want this
force_split = 2
} }
# See https://wiki.hyprland.org/Configuring/Master-Layout/ for more # See https://wiki.hyprland.org/Configuring/Master-Layout/ for more