summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-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