Advertisement
Guest User

Untitled

a guest
Feb 18th, 2011
371
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. #I want to save this xrandr options persistent
  2. #xrandr --output VGA1 --mode 1920x1080 --left-of LVDS1
  3. #xrandr --output LVDS1 --mode 1024x576
  4. #How to change the xorg.config file?
  5.  
  6. Section "ServerLayout"
  7.     Identifier     "X.org Configured"
  8.     Screen      0  "Screen0" 0 0
  9.     InputDevice    "Mouse0" "CorePointer"
  10.     InputDevice    "Keyboard0" "CoreKeyboard"
  11. EndSection
  12.  
  13. Section "Files"
  14.     ModulePath   "/usr/lib/xorg/modules"
  15.     FontPath     "/usr/share/fonts/X11/misc"
  16.     FontPath     "/usr/share/fonts/X11/cyrillic"
  17.     FontPath     "/usr/share/fonts/X11/100dpi/:unscaled"
  18.     FontPath     "/usr/share/fonts/X11/75dpi/:unscaled"
  19.     FontPath     "/usr/share/fonts/X11/Type1"
  20.     FontPath     "/usr/share/fonts/X11/100dpi"
  21.     FontPath     "/usr/share/fonts/X11/75dpi"
  22.     FontPath     "/var/lib/defoma/x-ttcidfont-conf.d/dirs/TrueType"
  23.     FontPath     "built-ins"
  24. EndSection
  25.  
  26. Section "Module"
  27.     Load  "dri"
  28.     Load  "dbe"
  29.     Load  "extmod"
  30.     Load  "dri2"
  31.     Load  "glx"
  32.     Load  "record"
  33. EndSection
  34.  
  35. Section "InputDevice"
  36.     Identifier  "Keyboard0"
  37.     Driver      "kbd"
  38. EndSection
  39.  
  40. Section "InputDevice"
  41.     Identifier  "Mouse0"
  42.     Driver      "mouse"
  43.     Option      "Protocol" "auto"
  44.     Option      "Device" "/dev/input/mice"
  45.     Option      "ZAxisMapping" "4 5 6 7"
  46. EndSection
  47.  
  48. Section "Monitor"
  49.     Identifier   "Monitor0"
  50.     VendorName   "Monitor Vendor"
  51.     ModelName    "Monitor Model"
  52. EndSection
  53.  
  54. Section "Device"
  55.         ### Available Driver options are:-
  56.         ### Values: <i>: integer, <f>: float, <bool>: "True"/"False",
  57.         ### <string>: "String", <freq>: "<f> Hz/kHz/MHz"
  58.         ### [arg]: arg optional
  59.         #Option     "AccelMethod"           # [<str>]
  60.         #Option     "DRI"                   # [<bool>]
  61.         #Option     "ColorKey"              # <i>
  62.         #Option     "VideoKey"              # <i>
  63.         #Option     "FallbackDebug"         # [<bool>]
  64.         #Option     "Tiling"                # [<bool>]
  65.         #Option     "Shadow"                # [<bool>]
  66.         #Option     "SwapbuffersWait"       # [<bool>]
  67.         #Option     "XvMC"                  # [<bool>]
  68.         #Option     "XvPreferOverlay"       # [<bool>]
  69.         #Option     "DebugFlushBatches"     # [<bool>]
  70.         #Option     "DebugFlushCaches"      # [<bool>]
  71.         #Option     "DebugWait"             # [<bool>]
  72.     Identifier  "Card0"
  73.     Driver      "intel"
  74.     VendorName  "Intel Corporation"
  75.     BoardName   "Mobile 945GME Express Integrated Graphics Controller"
  76.     BusID       "PCI:0:2:0"
  77. EndSection
  78.  
  79. Section "Screen"
  80.     Identifier "Screen0"
  81.     Device     "Card0"
  82.     Monitor    "Monitor0"
  83.     SubSection "Display"
  84.         Viewport   0 0
  85.         Depth     1
  86.     EndSubSection
  87.     SubSection "Display"
  88.         Viewport   0 0
  89.         Depth     4
  90.     EndSubSection
  91.     SubSection "Display"
  92.         Viewport   0 0
  93.         Depth     8
  94.     EndSubSection
  95.     SubSection "Display"
  96.         Viewport   0 0
  97.         Depth     15
  98.     EndSubSection
  99.     SubSection "Display"
  100.         Viewport   0 0
  101.         Depth     16
  102.     EndSubSection
  103.     SubSection "Display"
  104.         Viewport   0 0
  105.         Depth     24
  106.     EndSubSection
  107. EndSection
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement