Problem mit Auflösung - Xorg



  • hi, wie kann ich am besten die auflösung von kde ändern?
    hab mal in der xorg config:
    DisplaySize 330 210 ...schaut das nicht wirklich ideal aus;/
    ...ein \n kann man kaum fast nicht erkennen...

    cu

    Section "ServerLayout"
    Identifier "X.org Configured"
    Screen 0 "Screen0" 0 0
    InputDevice "Mouse0" "CorePointer"
    InputDevice "Keyboard0" "CoreKeyboard"
    EndSection

    Section "Files"
    RgbPath "/usr/share/X11/rgb"
    ModulePath "/usr/lib/xorg/modules"
    FontPath "/usr/share/fonts/misc"
    FontPath "/usr/share/fonts/75dpi"
    FontPath "/usr/share/fonts/100dpi"
    FontPath "/usr/share/fonts/TTF"
    FontPath "/usr/share/fonts/Type1"
    EndSection

    Section "Module"
    Load "extmod"
    Load "dbe"
    Load "record"
    Load "xtrap"
    Load "dri"
    Load "glx"
    Load "freetype"
    Load "type1"
    EndSection

    Section "InputDevice"
    Identifier "Keyboard0"
    Option "XkbLayout" "de"
    Driver "kbd"
    EndSection

    Section "InputDevice"
    Identifier "Mouse0"
    Driver "mouse"
    Option "Protocol" "auto"
    Option "Device" "/dev/input/mice"
    Option "ZAxisMapping" "4 5 6 7"
    EndSection

    Section "Monitor"
    DisplaySize 330 210 # mm
    Identifier "Monitor0"
    VendorName "SHP"
    ModelName "139f"
    EndSection

    Section "Device"
    ### Available Driver options are:-
    ### Values: <i>: integer, <f>: float, <bool>: "True"/"False",
    ### <string>: "String", <freq>: "<f> Hz/kHz/MHz"
    ### [arg]: arg optional
    #Option "NoAccel" # [<bool>]
    #Option "SWcursor" # [<bool>]
    #Option "Dac6Bit" # [<bool>]
    #Option "Dac8Bit" # [<bool>]
    #Option "BusType" # [<str>]
    #Option "CPPIOMode" # [<bool>]
    #Option "CPusecTimeout" # <i>
    #Option "AGPMode" # <i>
    #Option "AGPFastWrite" # [<bool>]
    #Option "AGPSize" # <i>
    #Option "GARTSize" # <i>
    #Option "RingSize" # <i>
    #Option "BufferSize" # <i>
    #Option "EnableDepthMoves" # [<bool>]
    #Option "EnablePageFlip" # [<bool>]
    #Option "NoBackBuffer" # [<bool>]
    #Option "DMAForXv" # [<bool>]
    #Option "FBTexPercent" # <i>
    #Option "PanelOff" # [<bool>]
    #Option "DDCMode" # [<bool>]
    #Option "MonitorLayout" # [<str>]
    #Option "IgnoreEDID" # [<bool>]
    #Option "UseFBDev" # [<bool>]
    #Option "MergedFB" # [<bool>]
    #Option "CRT2HSync" # [<str>]
    #Option "CRT2VRefresh" # [<str>]
    #Option "CRT2Position" # [<str>]
    #Option "MetaModes" # [<str>]
    #Option "MergedDPI" # [<str>]
    #Option "MergedXinerama" # [<bool>]
    #Option "MergedXineramaCRT2IsScreen0" # [<bool>]
    #Option "MergedNonRectangular" # [<bool>]
    #Option "MergedMouseRestriction" # [<bool>]
    #Option "DisplayPriority" # [<str>]
    #Option "PanelSize" # [<str>]
    #Option "ForceMinDotClock" # <freq>
    #Option "ColorTiling" # [<bool>]
    #Option "VideoKey" # <i>
    #Option "RageTheatreCrystal" # <i>
    #Option "RageTheatreTunerPort" # <i>
    #Option "RageTheatreCompositePort" # <i>
    #Option "RageTheatreSVideoPort" # <i>
    #Option "TunerType" # <i>
    #Option "RageTheatreMicrocPath" # <str>
    #Option "RageTheatreMicrocType" # <str>
    #Option "RenderAccel" # [<bool>]
    #Option "SubPixelOrder" # [<str>]
    #Option "ShowCache" # [<bool>]
    #Option "DynamicClocks" # [<bool>]
    #Option "BIOSHotkeys" # [<bool>]
    #Option "VGAAccess" # [<bool>]
    #Option "ReverseDDC" # [<bool>]
    #Option "LVDSProbePLL" # [<bool>]
    #Option "AccelMethod" # <str>
    Identifier "Card0"
    Driver "ati"
    VendorName "ATI Technologies Inc"
    BoardName "RV350 [Mobility Radeon 9600 M10]"
    BusID "PCI:1:0:0"
    EndSection

    Section "Screen"
    Identifier "Screen0"
    Device "Card0"
    Monitor "Monitor0"
    SubSection "Display"
    Viewport 0 0
    Depth 1
    EndSubSection
    SubSection "Display"
    Viewport 0 0
    Depth 4
    EndSubSection
    SubSection "Display"
    Viewport 0 0
    Depth 8
    EndSubSection
    SubSection "Display"
    Viewport 0 0
    Depth 15
    EndSubSection
    SubSection "Display"
    Viewport 0 0
    Depth 16
    EndSubSection
    SubSection "Display"
    Viewport 0 0
    Depth 24
    EndSubSection
    EndSection



  • Section "Screen"
    Identifier "Screen0"
    Device "Card0"
    Monitor "Monitor0"
    DefaultDepth 24
    SubSection "Display"
    Depth 24
    Modes "1440x900"
    EndSubSection
    EndSection



  • Oder so, je nachdem was du für Auflösungen willst:

    Section "Screen"
        Identifier "Screen0"
        Device     "Card0"
        Monitor    "Monitor0"
        DefaultDepth 24
    
        Subsection "Display"
            Depth 16
            Modes "1280x1024" "1024x768" "800x600"
        EndSubsection
    
        Subsection "Display"
            Depth 24
            Modes "1280x1024" "1024x768" "800x600"
        EndSubsection
    
        Subsection "Display"
            Depth 32
            Modes "1280x1024" "1024x768" "800x600"
        EndSubsection
    
        Subsection "Display"
            Depth 8
            Modes "1280x1024" "1024x768" "800x600"
        EndSubsection
    EndSection
    

    Viel Spaß.

    MfG

    GPC


Anmelden zum Antworten