9 lines
177 B
Bash
Executable File
9 lines
177 B
Bash
Executable File
#!/bin/bash
|
|
|
|
timeout_lock=900
|
|
timeout_DPMS=1080
|
|
|
|
swayidle -w \
|
|
timeout ${timeout_lock} "hyprlock & disown" \
|
|
timeout ${timeout_DPMS} "hyprctl dispatch dpms off"
|