scripts/update-keysyms: fix path to the include files after de1b6943d
[platform/upstream/libxkbcommon.git] / test / data / compat / ledscroll
1 // Use the Scroll Lock LED to show either
2 // Scroll Lock, Group, or Shift Lock state.
3
4 default partial xkb_compatibility "scroll_lock" {
5     indicator "Scroll Lock" {
6         allowExplicit;
7         whichModState= Locked;
8         modifiers= ScrollLock;
9     };
10 };
11
12 partial xkb_compatibility "group_lock" {
13     indicator "Scroll Lock" {
14         modifiers= None;
15         groups=All-group1;
16     };
17 };
18
19 partial xkb_compatibility "shift_lock" {
20     indicator "Scroll Lock" {
21         whichModState= Locked;
22         modifiers= Shift;
23     };
24 };