Guest User

Untitled

a guest
Oct 18th, 2017
63
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.87 KB | None | 0 0
  1. {
  2. "title": "Change caps_lock key",
  3. "rules": [
  4. {
  5. "description": "Post caps_lock if caps_lock is pressed alone, left_ctrl otherwise.",
  6. "manipulators": [
  7. {
  8. "type": "basic",
  9. "from": {
  10. "key_code": "caps_lock",
  11. "modifiers": {
  12. "optional": [
  13. "any"
  14. ]
  15. }
  16. },
  17. "to": [
  18. {
  19. "key_code": "left_control"
  20. }
  21. ],
  22. "to_if_alone": [
  23. {
  24. "key_code": "caps_lock"
  25. }
  26. ]
  27. }
  28. ]
  29. }
  30. ]
  31. }
Add Comment
Please, Sign In to add comment