Metainformationen zur Seite
Dies ist eine alte Version des Dokuments!
Konfiguration bei Kolja
sudo apt-get update sudo apt-get install x11-xserver-utils
xrandr -d :0 --output HDMI-1 --off
xrandr -d :0 --output HDMI-1 --auto
xrandr -d :0 --output HDMI-2 --auto --rotate left
iobroker Javascripts zur Displaysteuerung über SSH
<code> var SSH = require('simple-ssh'); var ssh = new SSH({
host: '192.168.xx.xx', user: 'user', pass: 'password'
});
ssh.exec('xrandr -d :0 –output HDMI-2 –off').start(); </code