summaryrefslogtreecommitdiffstats
path: root/xorg/xorg.conf
diff options
context:
space:
mode:
Diffstat (limited to 'xorg/xorg.conf')
-rw-r--r--xorg/xorg.conf46
1 files changed, 46 insertions, 0 deletions
diff --git a/xorg/xorg.conf b/xorg/xorg.conf
new file mode 100644
index 0000000..1f8d1a2
--- /dev/null
+++ b/xorg/xorg.conf
@@ -0,0 +1,46 @@
+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"
+ Option "DPMS" "false"
+EndSection
+
+Section "Screen"
+ Identifier "Screen"
+ Device "Grafik"
+ Monitor "Display"
+EndSection
+
+Section "ServerLayout"
+ Identifier "Layout"
+ InputDevice "Keyboard"
+ Screen "Screen"
+ Option "BlankTime" "0"
+ Option "StandbyTime" "0"
+ Option "SuspendTime" "0"
+ Option "OffTime" "0"
+ Option "NoPM" "1"
+EndSection
+
+Section "ServerFlags"
+ Option "DontZap" "false"
+ Option "AutoAddDevices" "False"
+ Option "AllowEmptyInput" "False"
+EndSection