summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorStefan Ritter <gideonstar@thehappy.de>2009-08-10 10:29:16 +0200
committerStefan Ritter <gideonstar@thehappy.de>2009-08-10 10:29:16 +0200
commit25173e4257ea581a815b670e138ef030765357e3 (patch)
tree28a487fb05184f27df3995f2d556e0cb02772091
parent107030e7bc62574698713c17715181dce3601867 (diff)
Added xorg.conf
-rw-r--r--xorg.conf40
1 files changed, 40 insertions, 0 deletions
diff --git a/xorg.conf b/xorg.conf
new file mode 100644
index 0000000..d393d51
--- /dev/null
+++ b/xorg.conf
@@ -0,0 +1,40 @@
+Section "InputDevice"
+ Identifier "Keyboard"
+ Driver "kbd"
+ Option "CoreKeyboard"
+ Option "XkbRules" "xorg"
+ Option "XkbModel" "pc105"
+ Option "XkbLayout" "de"
+ Option "XkbVariant" "neo"
+EndSection
+
+Section "Device"
+ Identifier "Grafik"
+ Driver "intel"
+ Option "AccelMethod" "uxa"
+ Option "EXAOptimizeMigration" "true"
+ Option "MigrationHeuristic" "greedy"
+ Option "Tiling" "false"
+EndSection
+
+Section "Monitor"
+ Identifier "Display"
+EndSection
+
+Section "Screen"
+ Identifier "Screen"
+ Device "Grafik"
+ Monitor "Display"
+EndSection
+
+Section "ServerLayout"
+ Identifier "Layout"
+ InputDevice "Keyboard"
+ Screen "Screen"
+EndSection
+
+Section "ServerFlags"
+ Option "DontZap" "false"
+ Option "AutoAddDevices" "False"
+ Option "AllowEmptyInput" "False"
+EndSection