summaryrefslogtreecommitdiffstats
path: root/xorg.conf
blob: d393d519ed90ca4103226d3cac5a852efa6b897e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
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