• Willkommen im Linux Club - dem deutschsprachigen Supportforum für GNU/Linux. Registriere dich kostenlos, um alle Inhalte zu sehen und Fragen zu stellen.

Bildschrimauflösung

Hallo,
in welcher Datei steht die aktuelle Bildschirmauflösung, die gerade für das KDE bzw. den XServer benutzt wird?

Alles Gute!
Andreas
 
für XFree-Server = /etc/X11/XF86-config-4
für X.Org-Server = /etc/X11/xorg.conf

oder die auflösung in

:~>Sax2

ändern...
 
OP
A

Andreas999

Newbie
Hallo,
bei mir in xorg.conf steht leider nicht die aktuell ausgewählte Bildschirmauflösung sondern nur ein DefaultDepth-Wert. Den Tiefenwerten sind MEHRERE Auflösungen zugeordnet.
Wie kann ich dort einen Default-Wert für die Auflösung eintragen?

Alles Gute!
Andreas
 
OP
A

Andreas999

Newbie
Section "Screen"
Identifier "Screen 1"
Device "KYRO"
Monitor "My Monitor"

# If your card can handle it, a higher default color depth (like 24 or 32)
# is highly recommended.

# DefaultDepth 8
# DefaultDepth 16
DefaultDepth 24
# DefaultDepth 32

# "1024x768" is also a conservative usable default resolution. If you
# have a better monitor, feel free to try resolutions such as
# "1152x864", "1280x1024", "1600x1200", and "1800x1400" (or whatever your
# card/monitor can produce)

Subsection "Display"
Depth 8
Modes "1024x768" "800x600" "640x480"
EndSubsection
Subsection "Display"
Depth 16
Modes "1024x768" "800x600" "640x480"
EndSubsection
Subsection "Display"
Depth 24
Modes "1024x768" "800x600" "640x480"
EndSubsection
Subsection "Display"
Depth 32
Modes "1024x768" "800x600" "640x480"
EndSubsection

EndSection
 
Oben