logo

oasis-root

Compiled tree of Oasis Linux based on own branch at <https://hacktivis.me/git/oasis/> git clone https://anongit.hacktivis.me/git/oasis-root.git

ledcaps (469B)


  1. // Use the Caps Lock LED to show either
  2. // Caps Lock, Group, or Shift Lock state.
  3. default partial xkb_compatibility "caps_lock" {
  4. indicator "Caps Lock" {
  5. !allowExplicit;
  6. whichModState= Locked;
  7. modifiers= Lock;
  8. };
  9. };
  10. partial xkb_compatibility "group_lock" {
  11. indicator "Caps Lock" {
  12. modifiers= None;
  13. groups=All-group1;
  14. };
  15. };
  16. partial xkb_compatibility "shift_lock" {
  17. indicator "Caps Lock" {
  18. whichModState= Locked;
  19. modifiers= Shift;
  20. };
  21. };