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

ledscroll (486B)


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