Created
March 9, 2014 23:53
-
-
Save anonymous/9456974 to your computer and use it in GitHub Desktop.
xorg.0.conf
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Section "ServerFlags" | |
| Option "AllowEmptyInput" "true" | |
| EndSection | |
| Section "ServerLayout" | |
| Identifier "seat0" | |
| Screen 0 "My screen 1" 0 0 | |
| Option "Clone" "off" | |
| # Option "AutoAddDevices" "false" | |
| Option "DisableModInDev" "true" | |
| Option "SingleCard" "on" # use this to simplfied isolatedevice option | |
| Option "AllowEmptyInput" "true" | |
| InputDevice "Mouse0" "CorePointer" | |
| InputDevice "Keyboard0" "CoreKeyboard" | |
| EndSection | |
| Section "InputDevice" | |
| Identifier "Keyboard0" | |
| Driver "evdev" | |
| Option "GrabDevice" "true" | |
| EndSection | |
| Section "InputDevice" | |
| Identifier "Mouse0" | |
| Driver "mouse" | |
| Option "Protocol" "auto" | |
| Option "Device" "/dev/input/mice" | |
| Option "ZAxisMapping" "4 5 6 7" | |
| EndSection | |
| Section "Files" | |
| ModulePath "/usr/lib/xorg/modules" | |
| FontPath "/usr/share/fonts/X11/misc" | |
| FontPath "/usr/share/fonts/X11/cyrillic" | |
| FontPath "/usr/share/fonts/X11/100dpi/:unscaled" | |
| FontPath "/usr/share/fonts/X11/75dpi/:unscaled" | |
| FontPath "/usr/share/fonts/X11/Type1" | |
| FontPath "/usr/share/fonts/X11/100dpi" | |
| FontPath "/usr/share/fonts/X11/75dpi" | |
| FontPath "built-ins" | |
| EndSection | |
| Section "Monitor" | |
| Identifier "My monitor 1" | |
| EndSection | |
| Section "Device" | |
| Identifier "Haswell" | |
| BusID "PCI:0:2:0" | |
| EndSection | |
| Section "Screen" | |
| Identifier "My screen 1" | |
| Device "Haswell" | |
| Monitor "My monitor 1" | |
| DefaultDepth 24 | |
| SubSection "Display" | |
| Depth 24 | |
| Modes "1680x1024" # I'm okay with one of you giving me a better display | |
| EndSubSection | |
| EndSection |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment