Advertisement
Guest User

Xorg.conf unichrome

a guest
Nov 9th, 2012
71
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Bash 1.25 KB | None | 0 0
  1. Section "ServerLayout"
  2.     Identifier     "X.org Configured"
  3.     Screen         "Screen0"
  4.     InputDevice    "Mouse0" "CorePointer"
  5.     InputDevice    "Keyboard0" "CoreKeyboard"
  6. EndSection
  7.  
  8. Section "Files"
  9.     ModulePath   "/usr/local/lib/X11/modules"
  10.     FontPath     "/usr/local/lib/X11/fonts/misc/"
  11.     FontPath     "/usr/local/lib/X11/fonts/TTF/"
  12.     FontPath     "/usr/local/lib/X11/fonts/OTF"
  13.     FontPath     "/usr/local/lib/X11/fonts/Type1/"
  14.     FontPath     "/usr/local/lib/X11/fonts/75dpi/"
  15. EndSection
  16.  
  17. Section "Module"
  18.     Load  "glx"
  19.     Load  "dri"
  20.     Load  "extmod"
  21.     Load  "dbe"
  22.     Load  "freetype"
  23. EndSection
  24.  
  25. Section "InputDevice"
  26.     Identifier  "Keyboard0"
  27.     Driver      "kbd"
  28.     Option "XkbLayout" "gb"
  29. EndSection
  30.  
  31. Section "InputDevice"
  32.     Identifier  "Mouse0"
  33.     Driver      "mouse"
  34.     Option      "Protocol" "auto"
  35.     Option      "Device" "/dev/input/mice"
  36.     Option      "ZAxisMapping" "4 5 6 7"
  37. EndSection
  38.  
  39. Section "Monitor"
  40.     Identifier   "Monitor0"
  41.     Option      "DPMS"
  42. EndSection
  43.  
  44. Section "Device"
  45.     Identifier  "Card0"
  46.     Driver      "unichrome"
  47. EndSection
  48.  
  49. Section "Screen"
  50.     Identifier "Screen0"
  51.     Device     "Card0"
  52.     Monitor    "Monitor0"
  53.     DefaultDepth 16
  54.  
  55.     SubSection "Display"
  56.         Viewport   0 0
  57.         Depth     16
  58.         Modes "1024x768"
  59.     EndSubSection
  60. EndSection
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement