태그 보관물: display

display

gnome-display-properties는 다른 구성을 어디에 저장합니까? 구성합니다. Gnome-display-properties는

gnome-display-properties를 사용하여 집과 사무실에서 랩톱에 연결하는 외부 화면을 구성합니다. Gnome-display-properties는 어떤 화면이 어떤 화면인지 영리하게 기억하고 화면이 연결되면 자동으로 화면을 설정합니다.

예를 들어, gnome-display-properties에서 모니터는 “Monitor : Samsung Electric Company 24 ””로 표시됩니다.이 정보가 어디에서 가져온 것인지 궁금합니다.

이 정보는 어디에 저장됩니까?



답변

정보는 모니터의 EDID에서 온 것 입니다. 확인하려면 패키지를 설치 read-edid하고 실행할 수 있습니다

sudo get-edid | parse-edid

이전에 xorg.conf 파일에있는 모니터 섹션을 포함한 일부 정보를 출력해야합니다. 예 :

Section "Monitor"
    # Block type: 2:0 3:ff
    # Block type: 2:0 3:fc
    Identifier "DELL U2311H"
    VendorName "DEL"
    ModelName "DELL U2311H"
    # Block type: 2:0 3:ff
    # Block type: 2:0 3:fc
    # Block type: 2:0 3:fd
    HorizSync 30-83
    VertRefresh 56-76
    # Max dot clock (video bandwidth) 170 MHz
    # DPMS capabilities: Active off:yes  Suspend:yes  Standby:yes

    Mode    "1920x1080" # vfreq 60.000Hz, hfreq 67.500kHz
        DotClock    148.500000
        HTimings    1920 2008 2052 2200
        VTimings    1080 1084 1089 1125
        Flags   "+HSync" "+VSync"
    EndMode
    # Block type: 2:0 3:ff
    # Block type: 2:0 3:fc
    # Block type: 2:0 3:fd
EndSection

세 글자 VendorName에 유의하십시오.


답변

htorque의 답변에 추가하고 JohanSJA의 의견을 답변으로 변환 :

이 정보는 어디에 저장됩니까?

에서 ~/.config/monitors.xml.


답변