reorganizing indicators, thanks to Frank Murphy
[xorg/xkeyboard-config] / compat / ledscroll
1 // Use Scroll Lock LED to show either Scroll Lock, Group, or Shift Lock state
2 //
3 // $Xorg: $
4
5 default partial xkb_compatibility "scroll_lock"   {
6    indicator "Scroll Lock" {
7        allowExplicit;
8        whichModState= Locked;
9        modifiers= ScrollLock;
10    };
11 };
12
13 partial xkb_compatibility "group_lock"   {
14    indicator "Scroll Lock" {
15        modifiers= None;
16        groups=All-group1;
17    };
18 };
19
20 partial xkb_compatibility "shift_lock"   {
21    indicator "Scroll Lock" {
22        whichModState= Locked;
23        modifiers= Shift;
24    };
25 };