Advertisement
Guest User

Untitled

a guest
Aug 22nd, 2019
78
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.65 KB | None | 0 0
  1. {
  2. "title": "Backtick to Escape Modifier",
  3. "rules": [
  4. {
  5. "description": "Backtick to Escape if Press Alone",
  6. "manipulators": [
  7. {
  8. "type": "basic",
  9. "from": {
  10. "key_code": "grave_accent_and_tilde",
  11. "modifiers": {
  12. "mandatory": ["left_command"]
  13. }
  14. },
  15. "to": [
  16. {
  17. "key_code": "grave_accent_and_tilde",
  18. "modifiers": ["left_command"]
  19. }
  20. ]
  21. },
  22. {
  23. "type": "basic",
  24. "from": {
  25. "key_code": "grave_accent_and_tilde",
  26. "modifiers": {
  27. "mandatory": ["right_command"]
  28. }
  29. },
  30. "to": [
  31. {
  32. "key_code": "grave_accent_and_tilde",
  33. "modifiers": ["vk_none"]
  34. }
  35. ]
  36. },
  37. {
  38. "type": "basic",
  39. "from": {
  40. "key_code": "grave_accent_and_tilde",
  41. "modifiers": {
  42. "mandatory": ["left_option"]
  43. }
  44. },
  45. "to": [
  46. {
  47. "key_code": "grave_accent_and_tilde",
  48. "modifiers": ["left_option"]
  49. }
  50. ]
  51. },
  52. {
  53. "type": "basic",
  54. "from": {
  55. "key_code": "grave_accent_and_tilde",
  56. "modifiers": {
  57. "mandatory": ["right_option"]
  58. }
  59. },
  60. "to": [
  61. {
  62. "key_code": "grave_accent_and_tilde",
  63. "modifiers": ["right_option"]
  64. }
  65. ]
  66. },
  67. {
  68. "type": "basic",
  69. "from": {
  70. "key_code": "grave_accent_and_tilde",
  71. "modifiers": {
  72. "mandatory": ["left_control"]
  73. }
  74. },
  75. "to": [
  76. {
  77. "key_code": "grave_accent_and_tilde",
  78. "modifiers": ["left_control"]
  79. }
  80. ]
  81. },
  82. {
  83. "type": "basic",
  84. "from": {
  85. "key_code": "grave_accent_and_tilde",
  86. "modifiers": {
  87. "mandatory": ["fn"]
  88. }
  89. },
  90. "to": [
  91. {
  92. "key_code": "grave_accent_and_tilde",
  93. "modifiers": ["vk_none"]
  94. }
  95. ]
  96. },
  97. {
  98. "type": "basic",
  99. "from": {
  100. "key_code": "grave_accent_and_tilde",
  101. "modifiers": {
  102. "mandatory": [
  103. "left_command",
  104. "left_shift"
  105. ]
  106. }
  107. },
  108. "to": [
  109. {
  110. "key_code": "grave_accent_and_tilde",
  111. "modifiers": ["fn"]
  112. }
  113. ]
  114. },
  115. {
  116. "type": "basic",
  117. "from": {
  118. "key_code": "grave_accent_and_tilde",
  119. "modifiers": {
  120. "optional": [
  121. "caps_lock"
  122. ]
  123. }
  124. },
  125. "to": [
  126. {
  127. "key_code": "escape"
  128. }
  129. ]
  130. }
  131. ]
  132. },
  133. {
  134. "description": "Notification and Mission Control",
  135. "manipulators": [
  136. {
  137. "type": "basic",
  138. "from": {
  139. "key_code": "mission_control",
  140. "modifiers": {
  141. "mandatory": ["left_option"]
  142. }
  143. },
  144. "to": [
  145. {
  146. "key_code": "f13"
  147. }
  148. ]
  149. }
  150. ]
  151. }
  152. ]
  153. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement