summaryrefslogtreecommitdiffstats
path: root/xorg/xorg.conf
diff options
context:
space:
mode:
authorStefan Ritter <xeno@thehappy.de>2009-10-16 12:54:13 +0200
committerStefan Ritter <xeno@thehappy.de>2009-10-16 12:54:13 +0200
commit08963be0a709b0c295a87aeb7f6359855329938a (patch)
treed564bb4daec8bad284d62d8924d6d3e449a0297f /xorg/xorg.conf
parent3a336a8627c9075281f0ff8132a1b8057795aec1 (diff)
Cleanup:
* Collected xorg related stuff in xorg/ zshrc: added sfnv (scan for new version with uscan)
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