You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
25 lines
469 B
25 lines
469 B
7 months ago
|
// Use the Caps Lock LED to show either
|
||
|
// Caps Lock, Group, or Shift Lock state.
|
||
|
|
||
|
default partial xkb_compatibility "caps_lock" {
|
||
|
indicator "Caps Lock" {
|
||
|
!allowExplicit;
|
||
|
whichModState= Locked;
|
||
|
modifiers= Lock;
|
||
|
};
|
||
|
};
|
||
|
|
||
|
partial xkb_compatibility "group_lock" {
|
||
|
indicator "Caps Lock" {
|
||
|
modifiers= None;
|
||
|
groups=All-group1;
|
||
|
};
|
||
|
};
|
||
|
|
||
|
partial xkb_compatibility "shift_lock" {
|
||
|
indicator "Caps Lock" {
|
||
|
whichModState= Locked;
|
||
|
modifiers= Shift;
|
||
|
};
|
||
|
};
|