HiveBrain v1.2.0
Get Started
← Back to all entries
snippetbashTip

xset — User preference utility for X. More information: <https://manned.org/xset>.

Submitted by: @import:tldr-pages··
0
Viewed 0 times
preferencecommandclimoreuserforxsetutility
linux

Problem

How to use the xset command: User preference utility for X. More information: <https://manned.org/xset>.

Solution

xset — User preference utility for X. More information: <https://manned.org/xset>.

Disable the screensaver:
xset s off


Disable the bell sound:
xset b off


Set the screensaver to start after 60 minutes of inactivity:
xset s 3600 3600


Disable DPMS (Energy Star) features:
xset -dpms


Enable DPMS (Energy Star) features:
xset +dpms


Query information on any X server:
xset -display :{{0}} q

Code Snippets

Disable the screensaver

xset s off

Disable the bell sound

xset b off

Set the screensaver to start after 60 minutes of inactivity

xset s 3600 3600

Disable DPMS (Energy Star) features

xset -dpms

Enable DPMS (Energy Star) features

xset +dpms

Context

tldr-pages: linux/xset

Revisions (0)

No revisions yet.