Advertisement
Guest User

Untitled

a guest
Jun 25th, 2017
54
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.58 KB | None | 0 0
  1. {
  2. "profiles": [
  3. {
  4. "complex_modifications": {
  5. "rules": [
  6. {
  7. "manipulators": [
  8. {
  9. "description": "Change caps_lock to control when used as modifier, escape when used alone",
  10. "from": {
  11. "key_code": "caps_lock",
  12. "modifiers": {
  13. "optional": [
  14. "any"
  15. ]
  16. }
  17. },
  18. "to": [
  19. {
  20. "key_code": "left_control"
  21. }
  22. ],
  23. "to_if_alone": [
  24. {
  25. "key_code": "escape",
  26. "modifiers": {
  27. "optional": [
  28. "any"
  29. ]
  30. }
  31. }
  32. ],
  33. "type": "basic"
  34. },
  35. {
  36. "description": "Change left_control to command+control+option.",
  37. "from": {
  38. "key_code": "left_control",
  39. "modifiers": {
  40. "optional": [
  41. "any"
  42. ]
  43. }
  44. },
  45. "to": [
  46. {
  47. "key_code": "left_control",
  48. "modifiers": [
  49. "left_command",
  50. "left_option"
  51. ]
  52. }
  53. ],
  54. "type": "basic"
  55. }
  56. ]
  57. }
  58. ]
  59. }
  60. }
  61. ]
  62. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement