Files
manjaro-tools-livecd/bin/disable-dpms.in
2026-01-31 01:03:40 +01:00

7 lines
242 B
Bash
Executable File

#!/bin/bash
## DPMS - Display Power Management Settings
## These are disabled by default to prevent auto-actions when
## the system is idle, such as screen blanking (10 mins) or
## suspending (1 hour).
(sleep 15s && xset -dpms; xset s off) &