2
0
mirror of https://github.com/chubin/cheat.sheets synced 2024-11-15 06:12:59 +00:00
cheat.sheets/sheets/xset

22 lines
632 B
Plaintext
Raw Normal View History

2017-06-04 20:35:34 +00:00
# xset
# User preference utility for X
2017-06-04 20:35:34 +00:00
# Disable screen saver blanking.
2017-06-04 20:35:34 +00:00
xset s off
# Change time before which the screen is blanked, to 3,600 seconds (1 hour).
2017-06-04 20:35:34 +00:00
xset s 3600 3600
2021-06-08 15:03:13 +00:00
# Turn off Display Power Management Signalling. To instead enable DPMS, the `-`
# character is simply changed to `+`.
2017-06-04 20:35:34 +00:00
xset -dpms
# Disable DPMS and prevent screen from blanking. This command also clearly
# demonstrations the ability to combine several xset(1) commands within the one
# process call.
2017-06-04 20:35:34 +00:00
xset s off -dpms
# Immediately force the provided DPMS state (off). Available states are
# 'off', 'on', 'standby', and 'suspend'.
2017-06-04 20:35:34 +00:00
xset dpms force off