Xorg: Difference between revisions

From Bashlinux
Jump to navigationJump to search
Content deleted Content added
Manpaz (talk | contribs)
Created page with "__NOTOC__ Ensure the following line is present in <tt>/etc/X11/xorg.conf</tt> in order to let GUI handle the blank screen. Option "DPMS" === How to turn on/off the display f..."
 
Manpaz (talk | contribs)
No edit summary
 
Line 1: Line 1:
__NOTOC__
__NOTOC__
=== How to enable DPMS to manage monitor's energy power ===
Ensure the following line is present in <tt>/etc/X11/xorg.conf</tt> in order to let GUI handle the blank screen.
Ensure the following line is present in <tt>/etc/X11/xorg.conf</tt> in order to let GUI handle the blank screen.
Option "DPMS"
Option "DPMS"

Latest revision as of 00:21, 19 June 2015

How to enable DPMS to manage monitor's energy power

Ensure the following line is present in /etc/X11/xorg.conf in order to let GUI handle the blank screen.

Option "DPMS"

How to turn on/off the display from the CLi

xset

  • Enable DPMS
xset +dpms
  • Turn On/Off respectively
xset -display :0 dpms force off
xset -display :0 dpms force on
  • Check the current display status
xset -q

xrandr

  • List outputs
export DISPLAY=:0
xranrd -q
  • Turn On/Off respectively
xrandr --output DFP-1 --off
xrandr --output DFP-1 --auto

vbetool

export DISPLAY=:0
vbetool dpms off
vbetool dpms on