HARDWARE Dell Inspiron E1405/xorg.conf

From Gentoo Linux Wiki

Jump to: navigation, search
This article is part of the Hardware series.
Laptops TV Tuner Cards Wireless Servers Storage Other Hardware Motherboards Related
File: /etc/X11/xorg.conf
Section "ServerFlags"
        Option         "AllowMouseOpenFail" "on"
EndSection

Section "Files"
        FontPath        "/usr/share/fonts/misc"
        FontPath        "/usr/share/fonts/100dpi/:unscaled"
        FontPath        "/usr/share/fonts/Type1"
        FontPath        "/usr/share/fonts/100dpi"
EndSection

Section "Module"
       Load  "extmod"
       Load  "i2c"
       Load  "bitmap"
       Load  "ddc"
       Load  "dri"
       Load  "glx"
       Load  "freetype"
       Load  "type1" 
       Load  "evdev"
EndSection

Section "InputDevice"
        Identifier      "keyboard"
        Driver          "keyboard"
        Option          "Protocol"      "Standard"
        Option          "XkbRules"      "xorg"
        Option          "XkbModel"      "pc104"
EndSection

Section "InputDevice"
        Identifier      "synaptics"
        Driver          "synaptics"
        Option          "CorePointer"           "true"
        Option          "SendCoreEvents"        "true"
        # use the above udev rule to create /dev/input/touchpad
        Option          "Device"                "/dev/input/touchpad"
        Option          "Protocol"              "evdev"
        Option          "HorizScrollDelta"      "0"
        Option          "SHMConfig"             "1"
EndSection

Section "Device"
        Identifier      "i945"
        Driver          "intel"
    
        Option          "DRI"                     "true"
        Option          "XVideo"                  "true"
        Option          "Tiling"                  "true"
        Option          "UseFBDev"                "false"
        Option          "PageFlip"                "true"
        Option          "AccelMethod"             "XAA"
        Option          "TripleBuffer"            "true"
        Option          "XAANoOffscreenPixmaps"   "true"
        Option          "FramebufferCompression"  "true"
        
        # Enable offload of Motion Compensation (XvMC)
        Option          "LinearAlloc"             "16384"
        Option          "Cachelines"              "2048"
        Option          "XvMCSurfaces"            "7"

        # RandR configuration
        Option "Monitor-VGA"  "external"
        Option "Monitor-LVDS" "lvds"
EndSection

Section "Monitor"
        Identifier      "panel"
        Option          "DPMS"    "True"
EndSection

Section "Monitor"
        Identifier      "external"
        Option          "DPMS"    "True"
        Modeline        "1920x1080" 138.50 1920 1968 2000 2080  1080 1083 1088 1111 +hsync -vsync
EndSection

Section "Screen"
        Identifier      "screen"
        Device          "i945"
        Monitor         "panel"
        DefaultDepth     24
        SubSection "Display"
                Depth    24
                Virtual 2048 2048
        EndSubSection
EndSection

Section "Screen"
        Identifier      "screen"
        Device          "i945"
        Monitor         "external"
        DefaultDepth     24
        SubSection "Display"
                Depth    24
                Virtual 2048 2048
        EndSubSection
EndSection

Section "ServerLayout"
        Identifier      "layout"
        Screen          "screen"        0 0
        InputDevice     "keyboard"      "CoreKeyboard"
        InputDevice     "synaptics"     "CorePointer"
        Option          "SingleCard"    "true"
        Option          "OffTime"       "5"
EndSection

Section "DRI"
        Mode 0666
EndSection

Section "Extensions"
        Option         "Composite"   "true"
EndSection
Personal tools