Hi all,
is there a way to turn my notebook LCD monitor off from terminal with a command (,not in a X-session).
I tried both
setterm --powersave powerdown
setterm --powersave vsync
but both don’t work.
Thanks in return.
Remco
Hi all,
is there a way to turn my notebook LCD monitor off from terminal with a command (,not in a X-session).
I tried both
setterm --powersave powerdown
setterm --powersave vsync
but both don’t work.
Thanks in return.
Remco
You can use xrandr to control monitors.
This command to discover the names of your devices and output modes available:
xrandr -q
For example, to turn off laptop display:
xrandr --output LVDS --off
To turn off an external monitor (named VGA-0):
xrandr --output VGA-0 --off
A good reference:
Deano, you are a life-savior Thank you very much, (my laptop also says that
).
Cheers,
I had forgotten about this thread! Glad to see it worked for you.
Another command that always worked for me:
xset dpms force off