# xorg.conf

Section "ServerLayout"
	Identifier		"Default Layout"
	Screen		"Default Screen"
	  Option  	  	"BlankTime"  				"5"
	  Option  	  	"StandbyTime"  			"10" 
	  Option  	  	"SuspendTime"  			"20"
	  Option  	  	"OffTime"  				"30"
	InputDevice	"Generic Keyboard"
	InputDevice 	"Touchpad"
	InputDevice	"Mouse"
	Option		"AIGLX"					"true"
EndSection

Section "Files"
    FontPath 	"/usr/share/fonts/100dpi"
    FontPath 	"/usr/share/fonts/75dpi"
    FontPath 	"/usr/share/fonts/cyrillic"
    FontPath 	"/usr/share/fonts/misc"
    FontPath 	"/usr/share/fonts/ttf-bitstream-vera"
    FontPath 	"/usr/share/fonts/Type1"
    FontPath 	"/usr/local/share/fonts"
EndSection

Section "Module"
	Load	"bitmap"
	Load	"dbe"
	#Load	"ddc"
	Load	"dri"
	Load	"extmod"
	Load	"freetype"
	Load	"glx"
	#Load 	"i2c"
	Load	"int10"
	Load	"type1"
	Load   	"vbe"
EndSection

Section "DRI"
	Group		0
	Mode		0666
EndSection

Section "InputDevice"
	Identifier	"Generic Keyboard"
	Driver	"keyboard"
	Option	"CoreKeyboard"
	Option	"XkbRules"			"xorg"
	Option	"XkbModel"			"pc105"
	Option	"XkbLayout"			"de"
	Option	"XkbVariant"			"nodeadkeys"
	Option	"XkbOptions"			"nodeadkeys"
EndSection

Section "InputDevice"
  Driver  		"synaptics"
  Identifier  	"Touchpad"
  Option 		"Device"  			"/dev/input/mouse0"
  Option		"Protocol"			"auto-dev"
  Option		"CorePointer"
  Option		"SHMConfig"			"on"
  Option		"LeftEdge"      		"1700"
  Option		"RightEdge"     		"5300"
  Option		"TopEdge"      			"1700"
  Option		"BottomEdge" 			"4200"
  Option		"FingerLow"			"25"
  Option		"FingerHigh"			"30"
  Option		"MaxTapTime"			"180"
  Option		"MaxTapMove"			"220"
  Option		"VertScrollDelta" 		"100"
  Option		"MinSpeed"			"0.10"
  Option		"MaxSpeed"			"0.15"
  Option		"AccelFactor" 		"0.0010"
EndSection

Section "InputDevice"
	Identifier	"Mouse"
	Driver	"mouse"
	Option	"Device"				"/dev/input/mouse1"
	Option	"Protocol"			"ImPS/2"
	Option	"Always Core"
	Option	"Emulate3Buttons"		"true"
	Option	"ZAxisMapping"		"4 5"
EndSection

Section "Device"
	Identifier	"Intel Corporation 82852/855GM Integrated Graphics Device"
	Driver	"i810"
	BusID	"PCI:0:2:0"
	Option	"DRI"						"true"
	Option	"XAANoOffscreenPixmaps"		"true"
EndSection

Section "Monitor"
	Identifier		"Standardbildschirm"
	Option  		"DPMS"  					"true"
	HorizSync		28-49
	VertRefresh	43-72
EndSection

Section "Screen"
	Identifier		"Default Screen"
	Device		"Intel Corporation 82852/855GM Integrated Graphics Device"
	Monitor		"Standardbildschirm"
	DefaultDepth	24
	SubSection "Display"
		Depth	24
		Modes	"1024x768"
	EndSubSection
EndSection

