summaryrefslogtreecommitdiffstats
path: root/xorg/xorg.conf
blob: d8ca7a311a28c5a2034e9ae568bfa54f4a861191 (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
41
42
43
44
Section "InputDevice"
    Identifier         "argh"
    Driver             "kbd"
    Option             "CoreKeyboard"
    Option             "XkbRules" "xorg"
    Option             "XkbModel" "pc105"
    Option             "XkbLayout" "de"
    Option             "XkbVariant" "neo"
    # Make ctrl-alt-backspace working
    Option             "XkbOptions" "terminate:ctrl_alt_bksp"
EndSection

Section "Device"
    Identifier         "aaaahhh"
    Driver             "intel"
EndSection

Section "Monitor"
    Identifier         "Display"
    Option             "DPMS" "false"
EndSection

Section "Screen"
    Identifier         "gnarf"
    Device             "aaaahhh"
    Monitor            "Display"
EndSection

Section "ServerLayout"
    Identifier         "mumu"
    InputDevice        "argh"
    Screen             "gnarf"
    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