Advertisement
Guest User

Untitled

a guest
Aug 21st, 2019
135
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 3.42 KB | None | 0 0
  1. {
  2. "title": "FC660 like MacBook Pro",
  3. "rules": [
  4. {
  5. "description": "Esc Modifiers to Backtick",
  6. "manipulators": [
  7. {
  8. "type": "basic",
  9. "from": {
  10. "key_code": "escape",
  11. "modifiers": {
  12. "mandatory": [
  13. "left_command"
  14. ]
  15. }
  16. },
  17. "to": [
  18. {
  19. "key_code": "grave_accent_and_tilde",
  20. "modifiers": [
  21. "left_command"
  22. ]
  23. }
  24. ]
  25. },
  26. {
  27. "type": "basic",
  28. "from": {
  29. "key_code": "escape",
  30. "modifiers": {
  31. "mandatory": [
  32. "left_option"
  33. ]
  34. }
  35. },
  36. "to": [
  37. {
  38. "key_code": "grave_accent_and_tilde",
  39. "modifiers": [
  40. "left_option"
  41. ]
  42. }
  43. ]
  44. },
  45. {
  46. "type": "basic",
  47. "from": {
  48. "key_code": "escape",
  49. "modifiers": {
  50. "mandatory": [
  51. "left_control"
  52. ]
  53. }
  54. },
  55. "to": [
  56. {
  57. "key_code": "grave_accent_and_tilde",
  58. "modifiers": [
  59. "left_control"
  60. ]
  61. }
  62. ]
  63. },
  64. {
  65. "type": "basic",
  66. "from": {
  67. "key_code": "escape",
  68. "modifiers": {
  69. "mandatory": [
  70. "fn"
  71. ]
  72. }
  73. },
  74. "to": [
  75. {
  76. "key_code": "grave_accent_and_tilde"
  77. }
  78. ]
  79. },
  80. {
  81. "type": "basic",
  82. "from": {
  83. "key_code": "grave_accent_and_tilde",
  84. "modifiers": {
  85. "mandatory": [
  86. "command",
  87. "shift"
  88. ]
  89. }
  90. },
  91. "to": [
  92. {
  93. "key_code": "grave_accent_and_tilde",
  94. "modifiers": [
  95. "fn"
  96. ]
  97. }
  98. ]
  99. }
  100. ]
  101. },
  102. {
  103. "description": "Fn + h/j/k/l to Arrows",
  104. "manipulators": [
  105. {
  106. "type": "basic",
  107. "from": {
  108. "key_code": "h",
  109. "modifiers": {
  110. "mandatory": [
  111. "fn"
  112. ],
  113. "optional": [
  114. "caps_lock"
  115. ]
  116. },
  117. "to": [
  118. {
  119. "key_code": "left_arrow"
  120. }
  121. ]
  122. }
  123. },
  124. {
  125. "type": "basic",
  126. "from": {
  127. "key_code": "j",
  128. "modifiers": {
  129. "mandatory": [
  130. "fn"
  131. ],
  132. "optional": [
  133. "caps_lock"
  134. ]
  135. }
  136. },
  137. "to": [
  138. {
  139. "key_code": "down_arrow"
  140. }
  141. ]
  142. },
  143. {
  144. "type": "basic",
  145. "from": {
  146. "key_code": "k",
  147. "modifiers": {
  148. "mandatory": [
  149. "fn"
  150. ],
  151. "optional": [
  152. "caps_lock"
  153. ]
  154. }
  155. },
  156. "to": [
  157. {
  158. "key_code": "up_arrow"
  159. }
  160. ]
  161. },
  162. {
  163. "type": "basic",
  164. "from": {
  165. "key_code": "l",
  166. "modifiers": {
  167. "mandatory": [
  168. "fn"
  169. ],
  170. "optional": [
  171. "caps_lock"
  172. ]
  173. }
  174. },
  175. "to": [
  176. {
  177. "key_code": "right_arrow"
  178. }
  179. ]
  180. }
  181. ]
  182. },
  183. {
  184. "description": "Forward Delete with Command Backward-Delete",
  185. "manipulators": [
  186. {
  187. "from": {
  188. "key_code": "delete_or_backspace",
  189. "modifiers": {
  190. "mandatory": [
  191. "command"
  192. ],
  193. "optional": [
  194. "any"
  195. ]
  196. }
  197. },
  198. "to": [
  199. {
  200. "key_code": "delete_forward"
  201. }
  202. ],
  203. "type": "basic"
  204. }
  205. ]
  206. },
  207. {
  208. "description": "Notification and Mission Control",
  209. "manipulators": [
  210. {
  211. "type": "basic",
  212. "from": {
  213. "key_code": "mission_control",
  214. "modifiers": {
  215. "mandatory": [
  216. "left_option"
  217. ]
  218. }
  219. },
  220. "to": [
  221. {
  222. "key_code": "f13"
  223. }
  224. ]
  225. }
  226. ]
  227. }
  228. ]
  229. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement