[Date Prev][Date Next] [Thread Prev][Thread Next] [Date Index] [Thread Index]

Re: VGA-Ausgang am EeePC nutzen



> Ist das automatisch installiert? Ich kann mich nicht erinnern, so etwas
> jemals bewusst installiert zu haben...

Ist automatisch mit dabei.

Hier noch ein Script - vielleicht hilft dir das weiter...

#!/bin/bash

title="Monitoreinstellungen"
sel=$(kdialog   --title $title --radiolist "Monitor einstellen (Dual
Head mit Laptopmonitor)" \
                        DUALHEAD_ABOVE "Zwei Monitore Oben Unten" off \
                        BOTHON "Beide Monitore gleiches Bild" off \
                        LAPTOPONLY "Nur Laptop" off \
                        EXTERNONLY "Nur Extern" off \
                        AUTO    "Automatische Erkennung" on )


xrandr --auto

case $sel in
        BOTHON)         xrandr --output VGA --same-as LVDS
                ;;
        DUALHEAD_ABOVE) xrandr --output VGA --above LVDS
                ;;
        LAPTOPONLY)     xrandr --output VGA --off
                        xrandr --output LVDS --auto
                ;;
        EXTERNONLY)     xrandr --output LVDS --off
                        xrandr --output VGA --auto
                ;;
        AUTO)           xrandr --auto
                ;;
esac


Reply to: