16:9 Monitorauflösung

User helfen sich hier bei der Manjaro XFCE Edition!

Themen Author
Allfred
Forum Gott
Forum Gott
Beiträge: 372
Registriert: Samstag 10. November 2018, 16:50
GPU:
Kernel:
Desktop-Variante:
GPU Treiber:
Hat sich bedankt: 51 Mal
Danksagung erhalten: 9 Mal

Re: 16:9 Monitorauflösung

#16

Beitrag von Allfred »

Ich habe nun in µ-Schrift meine cvt Resultate:

Code: Alles auswählen

$ cvt 1152 648 60
# 1152x648 59.72 Hz (CVT 0.75M9) hsync: 40.25 kHz; pclk: 59.25 MHz
Modeline "1152x648_60.00"   59.25  1152 1200 1312 1472  648 651 656 674 -hsync +vsync

$ cvt 1024 576 60
# 1024x576 59.90 Hz (CVT 0.59M9) hsync: 35.88 kHz; pclk: 46.50 MHz
Modeline "1024x576_60.00"   46.50  1024 1064 1160 1296  576 579 584 599 -hsync +vsync
Daraus kann ich nun die xrandr Befele bauen:

Code: Alles auswählen

xrandr --newmode "1152x648_60.00"   59.25  1152 1200 1312 1472  648 651 656 674 -hsync +vsync
und

Code: Alles auswählen

xrandr --newmode "1024x576_60.00"   46.50  1024 1064 1160 1296  576 579 584 599 -hsync +vsync
Die neuen Auflösungen werden nun so hinzugefügt?:
xrandr --verbose --addmode default "****x***_60.00"
Warum --verbose, addmode bei mir HDMI-0 ?
Kannst Du da noch einmal ein Äuglein daruf werfen? 8)

Code: Alles auswählen

xrandr --verbose --addmode HDMI-0 "1152x648_60.00"

Code: Alles auswählen

xrandr --verbose --addmode HDMI-0 "1024x576_60.00"

Benutzer 334 gelöscht

Re: 16:9 Monitorauflösung

#17

Beitrag von Benutzer 334 gelöscht »

Allfred hat geschrieben: ↑Montag 30. März 2020, 10:09 Ich habe nun in µ-Schrift meine cvt Resultate:

Die neuen Auflösungen werden nun so hinzugefügt?:
xrandr --verbose --addmode default "****x***_60.00" < Hinweis im Blog noch einmal lesen hilft ;D
Warum --verbose, addmode bei mir HDMI-0 ?
Kannst Du da noch einmal ein Äuglein daruf werfen? 8)

Code: Alles auswählen

xrandr --verbose --addmode HDMI-0 "1152x648_60.00"

Code: Alles auswählen

xrandr --verbose --addmode HDMI-0 "1024x576_60.00"
Das ist schon richtig;

HDMI-0 weil dein Bildschirm daran hängt. (siehe xrandr Augabe; connected)
Verbose bedeutet im Neusprech auskunftfreundlich und kann ausgelassen werden.

Die hinzugefügten Auflösungen verschwinden nach einem Reboot und das wollen wir nicht.

Dauerhafte Lösung:

Code: Alles auswählen

Section "Monitor"
    Identifier "HDMI-0"
	Modeline "1152x648_60.00"   59.25  1152 1200 1312 1472  648 651 656 674 -hsync +vsync
	Modeline "1024x576_60.00"   46.50  1024 1064 1160 1296  576 579 584 599 -hsync +vsync
    Option      "PreferredMode" "1152x648_60.00" ## oder "1024x576_60.00" 
EndSection
in 10-monitor.conf Textdatei im /etc/X11/xorg.conf.d/ Ordner als root speichern.

Ansonnsten würde ich im Terminal noch die Schriftart Größe anpassen. :)

MfG

Themen Author
Allfred
Forum Gott
Forum Gott
Beiträge: 372
Registriert: Samstag 10. November 2018, 16:50
GPU:
Kernel:
Desktop-Variante:
GPU Treiber:
Hat sich bedankt: 51 Mal
Danksagung erhalten: 9 Mal

Re: 16:9 Monitorauflösung

#18

Beitrag von Allfred »

Perfekt - na ja, fast.
Schriften im Terminal gestochen scharf bei 1152x648 (und 1024x576), das Ratio endlich 100% bei Kreisen.
Allerdings in der Taskleiste und im Startmenue nur ein verwaschenes Schriftbild. Aber vll skalieren diese Systemschriften nicht mehr so klein.
-----------------
Allerdings habe ich nun direkt am oberen Bildschirmrand genau exakt eine durchgehende Pixelreihe in leuchtend blau.
Hätte ich 1152x649 statt der 16:9 Auflösung 1152x648 probieren sollen? Fehlt dem Panelprozessor nun eine Zeile?

Code: Alles auswählen

$ cvt 1152 648 60
# 1152x648 59.72 Hz (CVT 0.75M9) hsync: 40.25 kHz; pclk: 59.25 MHz
Modeline "1152x648_60.00"   59.25  1152 1200 1312 1472  648 651 656 674 -hsync +vsync

Code: Alles auswählen

$ cvt 1152 649 60
# 1152x649 59.74 Hz (CVT) hsync: 40.32 kHz; pclk: 60.00 MHz
Modeline "1152x649_60.00"   60.00  1152 1208 1320 1488  649 652 662 675 -hsync +vsync

Themen Author
Allfred
Forum Gott
Forum Gott
Beiträge: 372
Registriert: Samstag 10. November 2018, 16:50
GPU:
Kernel:
Desktop-Variante:
GPU Treiber:
Hat sich bedankt: 51 Mal
Danksagung erhalten: 9 Mal

Re: 16:9 Monitorauflösung

#19

Beitrag von Allfred »

Grrr - ich testete nun statt der 16:9 Auflösung 1152x648
mit 646, 649, 650 und 652 Bildzeilen.
Mir bleibt stets ein blau leuchtende erste Pixel/Zeile.
Nur bei den hinterlegten 1280x720 usw. bleibt der saubere obere Bildanschuß ohne blaue Zeile. C:-)

Benutzer 334 gelöscht

Re: 16:9 Monitorauflösung

#20

Beitrag von Benutzer 334 gelöscht »

Allfred hat geschrieben: ↑Dienstag 31. März 2020, 09:16 Perfekt - na ja, fast.
Schriften im Terminal gestochen scharf bei 1152x648 (und 1024x576), das Ratio endlich 100% bei Kreisen.
Allerdings in der Taskleiste und im Startmenue nur ein verwaschenes Schriftbild. Aber vll skalieren diese Systemschriften nicht mehr so klein.
-----------------
Allerdings habe ich nun direkt am oberen Bildschirmrand genau exakt eine durchgehende Pixelreihe in leuchtend blau.
Hätte ich 1152x649 statt der 16:9 Auflösung 1152x648 probieren sollen? Fehlt dem Panelprozessor nun eine Zeile?

Code: Alles auswählen

$ cvt 1152 648 60
# 1152x648 59.72 Hz (CVT 0.75M9) hsync: 40.25 kHz; pclk: 59.25 MHz
Modeline "1152x648_60.00"   59.25  1152 1200 1312 1472  648 651 656 674 -hsync +vsync

Code: Alles auswählen

$ cvt 1152 649 60
# 1152x649 59.74 Hz (CVT) hsync: 40.32 kHz; pclk: 60.00 MHz
Modeline "1152x649_60.00"   60.00  1152 1208 1320 1488  649 652 662 675 -hsync +vsync
Siehe:
https://de.wikipedia.org/wiki/Bildauflösung
https://de.wikipedia.org/wiki/Bildauflö ... _Auflösung

Wegen overscan siehe:
https://wiki.archlinux.org/index.php/Xr ... n_property

Ob underscan möglich ist, siehe:

Code: Alles auswählen

xrandr --prop
Ansonnsten; Einstellungen, Schrift: Kantenglättung+Hinting+Subpixel-Geometrie.
Oder Systemschrift ändern.

MfG

Themen Author
Allfred
Forum Gott
Forum Gott
Beiträge: 372
Registriert: Samstag 10. November 2018, 16:50
GPU:
Kernel:
Desktop-Variante:
GPU Treiber:
Hat sich bedankt: 51 Mal
Danksagung erhalten: 9 Mal

Re: 16:9 Monitorauflösung

#21

Beitrag von Allfred »

Meine Sonntagsfleißarbeit:
QHD Quarter HD 640 × 360
WVGA Wide VGA 848 × 480, 852 × 480, 858 × 484
qHD Quarter HD 960 × 540, 964 × 544
WXGA Wide XGA 1024 × 576
WSVGA Wide SVGA 1024 × 600, 1072 × 600

Alle Auflösungen sind nun getestet, überall bleibt konstant die obere blaue Pixelzeile. Am schönsten war 640x360 ^-^
Allerdings trat dabei ein Effekt auf: Über HDMI verstummte sogar der Ton - bei Änderung auf normale Auflösungen wie zB. die 1152x648 kommt der Ton dann wieder. Schon komisch, bei der kleinsten Auflösung, welche die geringsten HW Anforderungen stellt funktioniert HDMI nur noch teilweise.

Gibt es eine Möglichkeit mit einem Testbild die real existierenden Pixelzeilen zu zählen. Ich stehe kurz davor die Bildzeilen mit der Lupe durchzuzählen...
Benutzeravatar

gosia
Forum Held
Forum Held
Beiträge: 2232
Registriert: Dienstag 24. Mai 2016, 13:33
CPU: Intel i5-3210M
GPU: Intel HD 4000
Kernel: 4.19
Desktop-Variante: Openbox
GPU Treiber: i915
Hat sich bedankt: 20 Mal
Danksagung erhalten: 495 Mal

Re: 16:9 Monitorauflösung

#22

Beitrag von gosia »

Hallo Allfred,
Allfred hat geschrieben: ↑Sonntag 5. April 2020, 10:11 Gibt es eine Möglichkeit mit einem Testbild die real existierenden Pixelzeilen zu zählen. Ich stehe kurz davor die Bildzeilen mit der Lupe durchzuzählen...
Schöne Beschäftigung ;) Aber wenn Du ein Testbild hast, so kannst Du dessen Auflösung mit identify aus dem Paket ImageMagick feststellen:

Code: Alles auswählen

identify Testbild.jpg
Testbild.jpg JPEG 960x768 960x768+0+0 8-bit sRGB 179KB 0.000u 0:00.000
xdpyinfo gibt auch eine Unmenge Infos über die angeschlossenen Bildschirme aus, u.a.

Code: Alles auswählen

supported pixmap formats:
    depth 1, bits_per_pixel 1, scanline_pad 32
    depth 4, bits_per_pixel 8, scanline_pad 32
    depth 8, bits_per_pixel 8, scanline_pad 32
    depth 15, bits_per_pixel 16, scanline_pad 32
    depth 16, bits_per_pixel 16, scanline_pad 32
    depth 24, bits_per_pixel 32, scanline_pad 32
    depth 32, bits_per_pixel 32, scanline_pad 32
...
screen #0:
  dimensions:    1366x768 pixels (361x203 millimeters)
  resolution:    96x96 dots per inch
  depths (7):    24, 1, 4, 8, 15, 16, 32
aber ob das nun so sehr hilfreicher als xrandr ist wage ich zu bezweifeln.

viele Grüße gosia

Themen Author
Allfred
Forum Gott
Forum Gott
Beiträge: 372
Registriert: Samstag 10. November 2018, 16:50
GPU:
Kernel:
Desktop-Variante:
GPU Treiber:
Hat sich bedankt: 51 Mal
Danksagung erhalten: 9 Mal

Re: 16:9 Monitorauflösung

#23

Beitrag von Allfred »

Ich habe die Tapete von xdpyinfo, aber mir sagt sie auch nicht mehr, als sie die eingestellte Auflösung zeigt - während ich die native Auflösung suche:

Code: Alles auswählen

[ga890gpaud3h ~]$ xdpyinfo
name of display:    :0.0
version number:    11.0
vendor string:    The X.Org Foundation
vendor release number:    12008000
X.Org version: 1.20.8
maximum request size:  16777212 bytes
motion buffer size:  256
bitmap unit, bit order, padding:    32, LSBFirst, 32
image byte order:    LSBFirst
number of supported pixmap formats:    7
supported pixmap formats:
    depth 1, bits_per_pixel 1, scanline_pad 32
    depth 4, bits_per_pixel 8, scanline_pad 32
    depth 8, bits_per_pixel 8, scanline_pad 32
    depth 15, bits_per_pixel 16, scanline_pad 32
    depth 16, bits_per_pixel 16, scanline_pad 32
    depth 24, bits_per_pixel 32, scanline_pad 32
    depth 32, bits_per_pixel 32, scanline_pad 32
keycode range:    minimum 8, maximum 255
focus:  window 0x3c00004, revert to Parent
number of extensions:    29
    BIG-REQUESTS
    Composite
    DAMAGE
    DOUBLE-BUFFER
    DPMS
    DRI2
    DRI3
    GLX
    Generic Event Extension
    MIT-SCREEN-SAVER
    MIT-SHM
    Present
    RANDR
    RECORD
    RENDER
    SECURITY
    SHAPE
    SYNC
    X-Resource
    XC-MISC
    XFIXES
    XFree86-DGA
    XFree86-VidModeExtension
    XINERAMA
    XInputExtension
    XKEYBOARD
    XTEST
    XVideo
    XVideo-MotionCompensation
default screen number:    0
number of screens:    1

screen #0:
  dimensions:    1152x648 pixels (304x171 millimeters)
  resolution:    96x96 dots per inch
  depths (7):    24, 1, 4, 8, 15, 16, 32
  root window id:    0x6b3
  depth of root window:    24 planes
  number of colormaps:    minimum 1, maximum 1
  default colormap:    0x20
  default number of colormap cells:    256
  preallocated pixels:    black 0, white 16777215
  options:    backing-store WHEN MAPPED, save-unders NO
  largest cursor:    64x64
  current input event mask:    0xfa803f
    KeyPressMask             KeyReleaseMask           ButtonPressMask          
    ButtonReleaseMask        EnterWindowMask          LeaveWindowMask          
    ExposureMask             StructureNotifyMask      SubstructureNotifyMask   
    SubstructureRedirectMask FocusChangeMask          PropertyChangeMask       
    ColormapChangeMask       
  number of visuals:    504
  default visual id:  0x21
  visual:
    visual id:    0x21
    class:    TrueColor
    depth:    24 planes
    available colormap entries:    256 per subfield
    red, green, blue masks:    0xff0000, 0xff00, 0xff
    significant bits in color specification:    8 bits
  visual:
    visual id:    0x22
    class:    DirectColor
    depth:    24 planes
    available colormap entries:    256 per subfield
    red, green, blue masks:    0xff0000, 0xff00, 0xff
    significant bits in color specification:    8 bits
  visual:
    visual id:    0x4bd
    class:    TrueColor
    depth:    24 planes
    available colormap entries:    256 per subfield
    red, green, blue masks:    0xff0000, 0xff00, 0xff
    significant bits in color specification:    8 bits
  visual:
    visual id:    0x4be
    class:    TrueColor
    depth:    24 planes
    available colormap entries:    256 per subfield
    red, green, blue masks:    0xff0000, 0xff00, 0xff
    significant bits in color specification:    8 bits
  visual:
    visual id:    0x4bf
    class:    TrueColor
    depth:    24 planes
    available colormap entries:    256 per subfield
    red, green, blue masks:    0xff0000, 0xff00, 0xff
    significant bits in color specification:    8 bits
  visual:
    visual id:    0x4c0
    class:    TrueColor
    depth:    24 planes
    available colormap entries:    256 per subfield
    red, green, blue masks:    0xff0000, 0xff00, 0xff
    significant bits in color specification:    8 bits
  visual:
    visual id:    0x4c1
    class:    TrueColor
    depth:    24 planes
    available colormap entries:    256 per subfield
    red, green, blue masks:    0xff0000, 0xff00, 0xff
    significant bits in color specification:    8 bits
  visual:
    visual id:    0x4c2
    class:    TrueColor
    depth:    24 planes
    available colormap entries:    256 per subfield
    red, green, blue masks:    0xff0000, 0xff00, 0xff
    significant bits in color specification:    8 bits
  visual:
    visual id:    0x4c3
    class:    TrueColor
    depth:    24 planes
    available colormap entries:    256 per subfield
    red, green, blue masks:    0xff0000, 0xff00, 0xff
    significant bits in color specification:    8 bits
  visual:
    visual id:    0x4c4
    class:    TrueColor
    depth:    24 planes
    available colormap entries:    256 per subfield
    red, green, blue masks:    0xff0000, 0xff00, 0xff
    significant bits in color specification:    8 bits
  visual:
    visual id:    0x4c5
    class:    TrueColor
    depth:    24 planes
    available colormap entries:    256 per subfield
    red, green, blue masks:    0xff0000, 0xff00, 0xff
    significant bits in color specification:    8 bits
  visual:
    visual id:    0x4c6
    class:    TrueColor
    depth:    24 planes
    available colormap entries:    256 per subfield
    red, green, blue masks:    0xff0000, 0xff00, 0xff
    significant bits in color specification:    8 bits
  visual:
    visual id:    0x4c7
    class:    TrueColor
    depth:    24 planes
    available colormap entries:    256 per subfield
    red, green, blue masks:    0xff0000, 0xff00, 0xff
    significant bits in color specification:    8 bits
  visual:
    visual id:    0x4c8
    class:    TrueColor
    depth:    24 planes
    available colormap entries:    256 per subfield
    red, green, blue masks:    0xff0000, 0xff00, 0xff
    significant bits in color specification:    8 bits
  visual:
    visual id:    0x4c9
    class:    TrueColor
    depth:    24 planes
    available colormap entries:    256 per subfield
    red, green, blue masks:    0xff0000, 0xff00, 0xff
    significant bits in color specification:    8 bits
  visual:
    visual id:    0x4ca
    class:    TrueColor
    depth:    24 planes
    available colormap entries:    256 per subfield
    red, green, blue masks:    0xff0000, 0xff00, 0xff
    significant bits in color specification:    8 bits
  visual:
    visual id:    0x4cb
    class:    TrueColor
    depth:    24 planes
    available colormap entries:    256 per subfield
    red, green, blue masks:    0xff0000, 0xff00, 0xff
    significant bits in color specification:    8 bits
  visual:
    visual id:    0x4cc
    class:    TrueColor
    depth:    24 planes
    available colormap entries:    256 per subfield
    red, green, blue masks:    0xff0000, 0xff00, 0xff
    significant bits in color specification:    8 bits
  visual:
    visual id:    0x4cd
    class:    TrueColor
    depth:    24 planes
    available colormap entries:    256 per subfield
    red, green, blue masks:    0xff0000, 0xff00, 0xff
    significant bits in color specification:    8 bits
  visual:
    visual id:    0x4ce
    class:    TrueColor
    depth:    24 planes
    available colormap entries:    256 per subfield
    red, green, blue masks:    0xff0000, 0xff00, 0xff
    significant bits in color specification:    8 bits
  visual:
    visual id:    0x4cf
    class:    TrueColor
    depth:    24 planes
    available colormap entries:    256 per subfield
    red, green, blue masks:    0xff0000, 0xff00, 0xff
    significant bits in color specification:    8 bits
  visual:
    visual id:    0x4d0
    class:    TrueColor
    depth:    24 planes
    available colormap entries:    256 per subfield
    red, green, blue masks:    0xff0000, 0xff00, 0xff
    significant bits in color specification:    8 bits
  visual:
    visual id:    0x4d1
    class:    TrueColor
    depth:    24 planes
    available colormap entries:    256 per subfield
    red, green, blue masks:    0xff0000, 0xff00, 0xff
    significant bits in color specification:    8 bits
  visual:
    visual id:    0x4d2
    class:    TrueColor
    depth:    24 planes
    available colormap entries:    256 per subfield
    red, green, blue masks:    0xff0000, 0xff00, 0xff
    significant bits in color specification:    8 bits
  visual:
    visual id:    0x4d3
    class:    TrueColor
    depth:    24 planes
    available colormap entries:    256 per subfield
    red, green, blue masks:    0xff0000, 0xff00, 0xff
    significant bits in color specification:    8 bits
  visual:
    visual id:    0x4d4
    class:    TrueColor
    depth:    24 planes
    available colormap entries:    256 per subfield
    red, green, blue masks:    0xff0000, 0xff00, 0xff
    significant bits in color specification:    8 bits
  visual:
    visual id:    0x4d5
    class:    TrueColor
    depth:    24 planes
    available colormap entries:    256 per subfield
    red, green, blue masks:    0xff0000, 0xff00, 0xff
    significant bits in color specification:    8 bits
  visual:
    visual id:    0x4d6
    class:    TrueColor
    depth:    24 planes
    available colormap entries:    256 per subfield
    red, green, blue masks:    0xff0000, 0xff00, 0xff
    significant bits in color specification:    8 bits
  visual:
    visual id:    0x4d7
    class:    TrueColor
    depth:    24 planes
    available colormap entries:    256 per subfield
    red, green, blue masks:    0xff0000, 0xff00, 0xff
    significant bits in color specification:    8 bits
  visual:
    visual id:    0x4d8
    class:    TrueColor
    depth:    24 planes
    available colormap entries:    256 per subfield
    red, green, blue masks:    0xff0000, 0xff00, 0xff
    significant bits in color specification:    8 bits
  visual:
    visual id:    0x4d9
    class:    TrueColor
    depth:    24 planes
    available colormap entries:    256 per subfield
    red, green, blue masks:    0xff0000, 0xff00, 0xff
    significant bits in color specification:    8 bits
  visual:
    visual id:    0x4da
    class:    TrueColor
    depth:    24 planes
    available colormap entries:    256 per subfield
    red, green, blue masks:    0xff0000, 0xff00, 0xff
    significant bits in color specification:    8 bits
  visual:
    visual id:    0x4db
    class:    TrueColor
    depth:    24 planes
    available colormap entries:    256 per subfield
    red, green, blue masks:    0xff0000, 0xff00, 0xff
    significant bits in color specification:    8 bits
  visual:
    visual id:    0x4dc
    class:    TrueColor
    depth:    24 planes
    available colormap entries:    256 per subfield
    red, green, blue masks:    0xff0000, 0xff00, 0xff
    significant bits in color specification:    8 bits
  visual:
    visual id:    0x4dd
    class:    TrueColor
    depth:    24 planes
    available colormap entries:    256 per subfield
    red, green, blue masks:    0xff0000, 0xff00, 0xff
    significant bits in color specification:    8 bits
  visual:
    visual id:    0x4de
    class:    TrueColor
    depth:    24 planes
    available colormap entries:    256 per subfield
    red, green, blue masks:    0xff0000, 0xff00, 0xff
    significant bits in color specification:    8 bits
  visual:
    visual id:    0x4df
    class:    TrueColor
    depth:    24 planes
    available colormap entries:    256 per subfield
    red, green, blue masks:    0xff0000, 0xff00, 0xff
    significant bits in color specification:    8 bits
  visual:
    visual id:    0x4e0
    class:    TrueColor
    depth:    24 planes
    available colormap entries:    256 per subfield
    red, green, blue masks:    0xff0000, 0xff00, 0xff
    significant bits in color specification:    8 bits
  visual:
    visual id:    0x4e1
    class:    TrueColor
    depth:    24 planes
    available colormap entries:    256 per subfield
    red, green, blue masks:    0xff0000, 0xff00, 0xff
    significant bits in color specification:    8 bits
  visual:
    visual id:    0x4e2
    class:    TrueColor
    depth:    24 planes
    available colormap entries:    256 per subfield
    red, green, blue masks:    0xff0000, 0xff00, 0xff
    significant bits in color specification:    8 bits
  visual:
    visual id:    0x4e3
    class:    TrueColor
    depth:    24 planes
    available colormap entries:    256 per subfield
    red, green, blue masks:    0xff0000, 0xff00, 0xff
    significant bits in color specification:    8 bits
  visual:
    visual id:    0x4e4
    class:    TrueColor
    depth:    24 planes
    available colormap entries:    256 per subfield
    red, green, blue masks:    0xff0000, 0xff00, 0xff
    significant bits in color specification:    8 bits
  visual:
    visual id:    0x4e5
    class:    TrueColor
    depth:    24 planes
    available colormap entries:    256 per subfield
    red, green, blue masks:    0xff0000, 0xff00, 0xff
    significant bits in color specification:    8 bits
  visual:
    visual id:    0x4e6
    class:    TrueColor
    depth:    24 planes
    available colormap entries:    256 per subfield
    red, green, blue masks:    0xff0000, 0xff00, 0xff
    significant bits in color specification:    8 bits
  visual:
    visual id:    0x4e7
    class:    TrueColor
    depth:    24 planes
    available colormap entries:    256 per subfield
    red, green, blue masks:    0xff0000, 0xff00, 0xff
    significant bits in color specification:    8 bits
  visual:
    visual id:    0x4e8
    class:    TrueColor
    depth:    24 planes
    available colormap entries:    256 per subfield
    red, green, blue masks:    0xff0000, 0xff00, 0xff
    significant bits in color specification:    8 bits
  visual:
    visual id:    0x4e9
    class:    TrueColor
    depth:    24 planes
    available colormap entries:    256 per subfield
    red, green, blue masks:    0xff0000, 0xff00, 0xff
    significant bits in color specification:    8 bits
  visual:
    visual id:    0x4ea
    class:    TrueColor
    depth:    24 planes
    available colormap entries:    256 per subfield
    red, green, blue masks:    0xff0000, 0xff00, 0xff
    significant bits in color specification:    8 bits
  visual:
    visual id:    0x4eb
    class:    TrueColor
    depth:    24 planes
    available colormap entries:    256 per subfield
    red, green, blue masks:    0xff0000, 0xff00, 0xff
    significant bits in color specification:    8 bits
  visual:
    visual id:    0x4ec
    class:    TrueColor
    depth:    24 planes
    available colormap entries:    256 per subfield
    red, green, blue masks:    0xff0000, 0xff00, 0xff
    significant bits in color specification:    8 bits
  visual:
    visual id:    0x4ed
    class:    TrueColor
    depth:    24 planes
    available colormap entries:    256 per subfield
    red, green, blue masks:    0xff0000, 0xff00, 0xff
    significant bits in color specification:    8 bits
  visual:
    visual id:    0x4ee
    class:    TrueColor
    depth:    24 planes
    available colormap entries:    256 per subfield
    red, green, blue masks:    0xff0000, 0xff00, 0xff
    significant bits in color specification:    8 bits
  visual:
    visual id:    0x4ef
    class:    TrueColor
    depth:    24 planes
    available colormap entries:    256 per subfield
    red, green, blue masks:    0xff0000, 0xff00, 0xff
    significant bits in color specification:    8 bits
  visual:
    visual id:    0x4f0
    class:    TrueColor
    depth:    24 planes
    available colormap entries:    256 per subfield
    red, green, blue masks:    0xff0000, 0xff00, 0xff
    significant bits in color specification:    8 bits
  visual:
    visual id:    0x4f1
    class:    TrueColor
    depth:    24 planes
    available colormap entries:    256 per subfield
    red, green, blue masks:    0xff0000, 0xff00, 0xff
    significant bits in color specification:    8 bits
  visual:
    visual id:    0x4f2
    class:    TrueColor
    depth:    24 planes
    available colormap entries:    256 per subfield
    red, green, blue masks:    0xff0000, 0xff00, 0xff
    significant bits in color specification:    8 bits
  visual:
    visual id:    0x4f3
    class:    TrueColor
    depth:    24 planes
    available colormap entries:    256 per subfield
    red, green, blue masks:    0xff0000, 0xff00, 0xff
    significant bits in color specification:    8 bits
  visual:
    visual id:    0x4f4
    class:    TrueColor
    depth:    24 planes
    available colormap entries:    256 per subfield
    red, green, blue masks:    0xff0000, 0xff00, 0xff
    significant bits in color specification:    8 bits
  visual:
    visual id:    0x4f5
    class:    TrueColor
    depth:    24 planes
    available colormap entries:    256 per subfield
    red, green, blue masks:    0xff0000, 0xff00, 0xff
    significant bits in color specification:    8 bits
  visual:
    visual id:    0x4f6
    class:    TrueColor
    depth:    24 planes
    available colormap entries:    256 per subfield
    red, green, blue masks:    0xff0000, 0xff00, 0xff
    significant bits in color specification:    8 bits
  visual:
    visual id:    0x4f7
    class:    TrueColor
    depth:    24 planes
    available colormap entries:    256 per subfield
    red, green, blue masks:    0xff0000, 0xff00, 0xff
    significant bits in color specification:    8 bits
  visual:
    visual id:    0x4f8
    class:    TrueColor
    depth:    24 planes
    available colormap entries:    256 per subfield
    red, green, blue masks:    0xff0000, 0xff00, 0xff
    significant bits in color specification:    8 bits
  visual:
    visual id:    0x4f9
    class:    TrueColor
    depth:    24 planes
    available colormap entries:    256 per subfield
    red, green, blue masks:    0xff0000, 0xff00, 0xff
    significant bits in color specification:    8 bits
  visual:
    visual id:    0x4fa
    class:    TrueColor
    depth:    24 planes
    available colormap entries:    256 per subfield
    red, green, blue masks:    0xff0000, 0xff00, 0xff
    significant bits in color specification:    8 bits
  visual:
    visual id:    0x4fb
    class:    TrueColor
    depth:    24 planes
    available colormap entries:    256 per subfield
    red, green, blue masks:    0xff0000, 0xff00, 0xff
    significant bits in color specification:    8 bits
      ...

Benutzer 334 gelöscht

Re: 16:9 Monitorauflösung

#24

Beitrag von Benutzer 334 gelöscht »

Allfred hat geschrieben: ↑Sonntag 5. April 2020, 10:11 Ich stehe kurz davor die Bildzeilen mit der Lupe durchzuzählen...
Dein Problem ist nach wie vor Overscan.
Xrandr markiert die native Auflösung mit + (Pluszeichen).
Statt Bildpunkte zu zählen, würde ich probehalber den VGA Anschluß benutzen.

MfG

Themen Author
Allfred
Forum Gott
Forum Gott
Beiträge: 372
Registriert: Samstag 10. November 2018, 16:50
GPU:
Kernel:
Desktop-Variante:
GPU Treiber:
Hat sich bedankt: 51 Mal
Danksagung erhalten: 9 Mal

Re: 16:9 Monitorauflösung

#25

Beitrag von Allfred »

Das ist interessant: Mir ist dieses "+" nie aufgefallen. Wann gibt Xrandr die native Auflösung preis? Über cvt?
Correction of overscan tv resolutions via the underscan property

Code: Alles auswählen

$ xrandr --output HDMI-0 --set underscan on --set "underscan vborder" 25 --set "underscan hborder" 40
... damit könnte ich mich dann von der nativen Auflösung zurück hangeln und den Overscann kompensieren. Das Menue im Monitor gibt das leider nicht her.
Antworten

Zurück zu „Manjaro XFCE Edition“