Guest User

Untitled

a guest
Oct 15th, 2018
76
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.99 KB | None | 0 0
  1. {
  2. "title": "Control_L + Shift_L to Control + Space",
  3. "rules": [
  4. {
  5. "description": "Control_L + Shift_L to Control + Space",
  6. "manipulators": [
  7. {
  8. "type": "basic",
  9. "from": {
  10. "key_code": "left_shift",
  11. "modifiers": {
  12. "mandatory": [
  13. "left_control"
  14. ]
  15. }
  16. },
  17. "to_if_alone": [
  18. {
  19. "key_code": "spacebar",
  20. "modifiers": [
  21. "left_control"
  22. ]
  23. }
  24. ]
  25. },
  26. {
  27. "type": "basic",
  28. "from": {
  29. "key_code": "left_control",
  30. "modifiers": {
  31. "mandatory": [
  32. "left_shift"
  33. ]
  34. }
  35. },
  36. "to_if_alone": [
  37. {
  38. "key_code": "spacebar",
  39. "modifiers": [
  40. "left_control"
  41. ]
  42. }
  43. ]
  44. }
  45. ]
  46. }
  47. ]
  48. }
Add Comment
Please, Sign In to add comment