aboutsummaryrefslogtreecommitdiffstats
path: root/x-keyboard/xkb_compat_maandree
blob: f6d41b761c32e6a5dbe9138c510499c03de9567e (plain) (blame)
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
45
46
47
48
49
50
51
52
53
54
55
56
57
58
/// Copyright 2013, Mattias Andrée
/// 
/// Copying and distribution of this file, with or without modification,
/// are permitted in any medium without royalty, provided the copyright
/// notice and this notice are preserved. This file is offered as-is,
/// without any warranty.

/// Install to /usr/share/X11/xkb/compat/


default xkb_compatibility "maandree"  {
    include "basic"
    augment "iso9995"
    augment "mousekeys"
    augment "accessx(full)"
    augment "misc"
    augment "xfree86"
    augment "level5"
    augment "caps(caps_lock)"

    interpret  XF86_Switch_VT_13 {
        action = SwitchScreen(Screen=13, !SameServer);
    };
    interpret  XF86_Switch_VT_14 {
        action = SwitchScreen(Screen=14, !SameServer);
    };
    interpret  XF86_Switch_VT_15 {
        action = SwitchScreen(Screen=15, !SameServer);
    };
    interpret  XF86_Switch_VT_16 {
        action = SwitchScreen(Screen=16, !SameServer);
    };
    interpret  XF86_Switch_VT_17 {
        action = SwitchScreen(Screen=17, !SameServer);
    };
    interpret  XF86_Switch_VT_18 {
        action = SwitchScreen(Screen=18, !SameServer);
    };
    interpret  XF86_Switch_VT_19 {
        action = SwitchScreen(Screen=19, !SameServer);
    };
    interpret  XF86_Switch_VT_20 {
        action = SwitchScreen(Screen=20, !SameServer);
    };
    interpret  XF86_Switch_VT_21 {
        action = SwitchScreen(Screen=21, !SameServer);
    };
    interpret  XF86_Switch_VT_22 {
        action = SwitchScreen(Screen=22, !SameServer);
    };
    interpret  XF86_Switch_VT_23 {
        action = SwitchScreen(Screen=23, !SameServer);
    };
    interpret  XF86_Switch_VT_24 {
        action = SwitchScreen(Screen=24, !SameServer);
    };

};