mirror of
https://github.com/chubin/cheat.sheets
synced 2024-11-05 12:00:16 +00:00
24 lines
362 B
Plaintext
24 lines
362 B
Plaintext
# xset
|
|
# user preference utility for X
|
|
|
|
# Disable screen saver blanking
|
|
xset s off
|
|
|
|
# Change blank time to 1 hour
|
|
xset s 3600 3600
|
|
|
|
# Turn off DPMS
|
|
xset -dpms
|
|
|
|
# Disable DPMS and prevent screen from blanking
|
|
xset s off -dpms
|
|
|
|
# Turn off screen immediately
|
|
xset dpms force off
|
|
|
|
# Standby screen
|
|
xset dpms force standby
|
|
|
|
# Suspend screen
|
|
xset dpms force suspend
|