RomansProfile.json 26 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816917017117217317417517617717817918018118218318418518618718818919019119219319419519619719819920020120220320420520620720820921021121221321421521621721821922022122222322422522622722822923023123223323423523623723823924024124224324424524624724824925025125225325425525625725825926026126226326426526626726826927027127227327427527627727827928028128228328428528628728828929029129229329429529629729829930030130230330430530630730830931031131231331431531631731831932032132232332432532632732832933033133233333433533633733833934034134234334434534634734834935035135235335435535635735835936036136236336436536636736836937037137237337437537637737837938038138238338438538638738838939039139239339439539639739839940040140240340440540640740840941041141241341441541641741841942042142242342442542642742842943043143243343443543643743843944044144244344444544644744844945045145245345445545645745845946046146246346446546646746846947047147247347447547647747847948048148248348448548648748848949049149249349449549649749849950050150250350450550650750850951051151251351451551651751851952052152252352452552652752852953053153253353453553653753853954054154254354454554654754854955055155255355455555655755855956056156256356456556656756856957057157257357457557657757857958058158258358458558658758858959059159259359459559659759859960060160260360460560660760860961061161261361461561661761861962062162262362462562662762862963063163263363463563663763863964064164264364464564664764864965065165265365465565665765865966066166266366466566666766866967067167267367467567667767867968068168268368468568668768868969069169269369469569669769869970070170270370470570670770870971071171271371471571671771871972072172272372472572672772872973073173273373473573673773873974074174274374474574674774874975075175275375475575675775875976076176276376476576676776876977077177277377477577677777877978078178278378478578678778878979079179279379479579679779879980080180280380480580680780880981081181281381481581681781881982082182282382482582682782882983083183283383483583683783883984084184284384484584684784884985085185285385485585685785885986086186286386486586686786886987087187287387487587687787887988088188288388488588688788888989089189289389489589689789889990090190290390490590690790890991091191291391491591691791891992092192292392492592692792892993093193293393493593693793893994094194294394494594694794894995095195295395495595695795895996096196296396496596696796896997097197297397497597697797897998098198298398498598698798898999099199299399499599699799899910001001100210031004100510061007100810091010101110121013101410151016101710181019102010211022102310241025102610271028102910301031103210331034103510361037103810391040104110421043104410451046104710481049105010511052105310541055105610571058105910601061106210631064106510661067106810691070107110721073107410751076107710781079108010811082108310841085108610871088108910901091109210931094109510961097109810991100110111021103110411051106110711081109111011111112111311141115111611171118111911201121112211231124112511261127112811291130113111321133113411351136113711381139114011411142114311441145114611471148114911501151115211531154115511561157115811591160116111621163116411651166116711681169117011711172117311741175117611771178117911801181118211831184118511861187118811891190119111921193119411951196119711981199120012011202120312041205120612071208120912101211121212131214121512161217121812191220122112221223122412251226122712281229123012311232123312341235123612371238123912401241124212431244124512461247124812491250125112521253125412551256
  1. {
  2. "title": "Roman's modifiers",
  3. "rules": [
  4. {
  5. "description": "Change Fn+Enter&Space to Command+Enter&Space,Change Command+Shift to Control+Space,Change Option+Tab to Command+Tab.",
  6. "manipulators": [
  7. {
  8. "conditions": [
  9. {
  10. "type": "frontmost_application_unless",
  11. "bundle_identifiers": [
  12. "^com\\.teamviewer\\.TeamViewer$",
  13. "^PT\\.JiCloudComputer$",
  14. "^com\\.oray\\.remote$",
  15. "^com\\.p5sys\\.jump\\.mac\\.viewer$"
  16. ]
  17. }
  18. ],
  19. "type": "basic",
  20. "from": {
  21. "key_code": "left_shift",
  22. "modifiers": {
  23. "mandatory": [
  24. "left_option"
  25. ],
  26. "optional": [
  27. "any"
  28. ]
  29. }
  30. },
  31. "to": [
  32. {
  33. "key_code": "spacebar",
  34. "modifiers": [
  35. "left_control"
  36. ]
  37. }
  38. ]
  39. },
  40. {
  41. "conditions": [
  42. {
  43. "type": "frontmost_application_unless",
  44. "bundle_identifiers": [
  45. "^com\\.teamviewer\\.TeamViewer$",
  46. "^PT\\.JiCloudComputer$",
  47. "^com\\.oray\\.remote$",
  48. "^com\\.p5sys\\.jump\\.mac\\.viewer$"
  49. ]
  50. }
  51. ],
  52. "type": "basic",
  53. "from": {
  54. "key_code": "left_option",
  55. "modifiers": {
  56. "mandatory": [
  57. "left_shift"
  58. ],
  59. "optional": [
  60. "any"
  61. ]
  62. }
  63. },
  64. "to": [
  65. {
  66. "key_code": "spacebar",
  67. "modifiers": [
  68. "left_control"
  69. ]
  70. }
  71. ]
  72. },
  73. {
  74. "type": "basic",
  75. "from": {
  76. "key_code": "return_or_enter",
  77. "modifiers": {
  78. "mandatory": [
  79. "fn"
  80. ],
  81. "optional": [
  82. "any"
  83. ]
  84. }
  85. },
  86. "to": [
  87. {
  88. "key_code": "return_or_enter",
  89. "modifiers": [
  90. "left_command"
  91. ]
  92. }
  93. ]
  94. },
  95. {
  96. "type": "basic",
  97. "from": {
  98. "key_code": "spacebar",
  99. "modifiers": {
  100. "mandatory": [
  101. "fn"
  102. ],
  103. "optional": [
  104. "any"
  105. ]
  106. }
  107. },
  108. "to": [
  109. {
  110. "key_code": "spacebar",
  111. "modifiers": [
  112. "left_command"
  113. ]
  114. }
  115. ]
  116. },
  117. {
  118. "type": "basic",
  119. "from": {
  120. "key_code": "left_arrow",
  121. "modifiers": {
  122. "mandatory": [
  123. "fn"
  124. ],
  125. "optional": [
  126. "any"
  127. ]
  128. }
  129. },
  130. "to": [
  131. {
  132. "key_code": "home"
  133. }
  134. ]
  135. },
  136. {
  137. "type": "basic",
  138. "from": {
  139. "key_code": "right_arrow",
  140. "modifiers": {
  141. "mandatory": [
  142. "fn"
  143. ],
  144. "optional": [
  145. "any"
  146. ]
  147. }
  148. },
  149. "to": [
  150. {
  151. "key_code": "end"
  152. }
  153. ]
  154. },
  155. {
  156. "type": "basic",
  157. "from": {
  158. "key_code": "up_arrow",
  159. "modifiers": {
  160. "mandatory": [
  161. "fn"
  162. ],
  163. "optional": [
  164. "any"
  165. ]
  166. }
  167. },
  168. "to": [
  169. {
  170. "key_code": "page_up"
  171. }
  172. ]
  173. },
  174. {
  175. "type": "basic",
  176. "from": {
  177. "key_code": "down_arrow",
  178. "modifiers": {
  179. "mandatory": [
  180. "fn"
  181. ],
  182. "optional": [
  183. "any"
  184. ]
  185. }
  186. },
  187. "to": [
  188. {
  189. "key_code": "page_down"
  190. }
  191. ]
  192. },
  193. {
  194. "conditions": [
  195. {
  196. "type": "frontmost_application_unless",
  197. "bundle_identifiers": [
  198. "^com\\.teamviewer\\.TeamViewer$",
  199. "^PT\\.JiCloudComputer$",
  200. "^com\\.oray\\.remote$",
  201. "^com\\.p5sys\\.jump\\.mac\\.viewer$"
  202. ]
  203. }
  204. ],
  205. "type": "basic",
  206. "from": {
  207. "key_code": "tab",
  208. "modifiers": {
  209. "mandatory": [
  210. "left_option"
  211. ],
  212. "optional": [
  213. "any"
  214. ]
  215. }
  216. },
  217. "to": [
  218. {
  219. "key_code": "tab",
  220. "modifiers": [
  221. "left_command"
  222. ]
  223. }
  224. ]
  225. }
  226. ]
  227. },
  228. {
  229. "description": "Change Fn,Control,Option in Teamviewer and JICloud and JumpDesktop and OrayRemote",
  230. "manipulators": [
  231. {
  232. "conditions": [
  233. {
  234. "type": "frontmost_application_if",
  235. "bundle_identifiers": [
  236. "^com\\.teamviewer\\.TeamViewer$",
  237. "^PT\\.JiCloudComputer$",
  238. "^com\\.oray\\.remote$",
  239. "^com\\.p5sys\\.jump\\.mac\\.viewer$"
  240. ]
  241. }
  242. ],
  243. "type": "basic",
  244. "from": {
  245. "key_code": "fn"
  246. },
  247. "to": [
  248. {
  249. "key_code": "left_control"
  250. }
  251. ]
  252. },
  253. {
  254. "conditions": [
  255. {
  256. "type": "frontmost_application_if",
  257. "bundle_identifiers": [
  258. "^com\\.teamviewer\\.TeamViewer$",
  259. "^PT\\.JiCloudComputer$",
  260. "^com\\.oray\\.remote$",
  261. "^com\\.p5sys\\.jump\\.mac\\.viewer$"
  262. ]
  263. }
  264. ],
  265. "type": "basic",
  266. "from": {
  267. "key_code": "left_control"
  268. },
  269. "to": [
  270. {
  271. "key_code": "left_command"
  272. }
  273. ]
  274. },
  275. {
  276. "conditions": [
  277. {
  278. "type": "frontmost_application_if",
  279. "bundle_identifiers": [
  280. "^com\\.teamviewer\\.TeamViewer$",
  281. "^PT\\.JiCloudComputer$",
  282. "^com\\.p5sys\\.jump\\.mac\\.viewer$"
  283. ]
  284. }
  285. ],
  286. "type": "basic",
  287. "from": {
  288. "key_code": "left_command"
  289. },
  290. "to": [
  291. {
  292. "key_code": "left_control"
  293. }
  294. ]
  295. }
  296. ]
  297. },
  298. {
  299. "description": "Change Fn+C,P,Q,A,Z,R to Control+C,P,Q,A,Z,R in ITerm",
  300. "manipulators": [
  301. {
  302. "conditions": [
  303. {
  304. "type": "frontmost_application_if",
  305. "bundle_identifiers": [
  306. "^com\\.googlecode\\.iterm2$",
  307. "^com\\.vandyke\\.SecureCRT$"
  308. ]
  309. }
  310. ],
  311. "type": "basic",
  312. "from": {
  313. "key_code": "c",
  314. "modifiers": {
  315. "mandatory": [
  316. "fn"
  317. ],
  318. "optional": [
  319. "any"
  320. ]
  321. }
  322. },
  323. "to": [
  324. {
  325. "key_code": "c",
  326. "modifiers": [
  327. "left_control"
  328. ]
  329. }
  330. ]
  331. },
  332. {
  333. "conditions": [
  334. {
  335. "type": "frontmost_application_if",
  336. "bundle_identifiers": [
  337. "^com\\.googlecode\\.iterm2$",
  338. "^com\\.vandyke\\.SecureCRT$"
  339. ]
  340. }
  341. ],
  342. "type": "basic",
  343. "from": {
  344. "key_code": "a",
  345. "modifiers": {
  346. "mandatory": [
  347. "fn"
  348. ],
  349. "optional": [
  350. "any"
  351. ]
  352. }
  353. },
  354. "to": [
  355. {
  356. "key_code": "a",
  357. "modifiers": [
  358. "left_control"
  359. ]
  360. }
  361. ]
  362. },
  363. {
  364. "conditions": [
  365. {
  366. "type": "frontmost_application_if",
  367. "bundle_identifiers": [
  368. "^com\\.googlecode\\.iterm2$",
  369. "^com\\.vandyke\\.SecureCRT$"
  370. ]
  371. }
  372. ],
  373. "type": "basic",
  374. "from": {
  375. "key_code": "z",
  376. "modifiers": {
  377. "mandatory": [
  378. "fn"
  379. ],
  380. "optional": [
  381. "any"
  382. ]
  383. }
  384. },
  385. "to": [
  386. {
  387. "key_code": "z",
  388. "modifiers": [
  389. "left_control"
  390. ]
  391. }
  392. ]
  393. },
  394. {
  395. "conditions": [
  396. {
  397. "type": "frontmost_application_if",
  398. "bundle_identifiers": [
  399. "^com\\.googlecode\\.iterm2$",
  400. "^com\\.vandyke\\.SecureCRT$"
  401. ]
  402. }
  403. ],
  404. "type": "basic",
  405. "from": {
  406. "key_code": "p",
  407. "modifiers": {
  408. "mandatory": [
  409. "fn"
  410. ],
  411. "optional": [
  412. "any"
  413. ]
  414. }
  415. },
  416. "to": [
  417. {
  418. "key_code": "p",
  419. "modifiers": [
  420. "left_control"
  421. ]
  422. }
  423. ]
  424. },
  425. {
  426. "conditions": [
  427. {
  428. "type": "frontmost_application_if",
  429. "bundle_identifiers": [
  430. "^com\\.googlecode\\.iterm2$",
  431. "^com\\.vandyke\\.SecureCRT$"
  432. ]
  433. }
  434. ],
  435. "type": "basic",
  436. "from": {
  437. "key_code": "r",
  438. "modifiers": {
  439. "mandatory": [
  440. "fn"
  441. ],
  442. "optional": [
  443. "any"
  444. ]
  445. }
  446. },
  447. "to": [
  448. {
  449. "key_code": "r",
  450. "modifiers": [
  451. "left_control"
  452. ]
  453. }
  454. ]
  455. }
  456. ]
  457. },
  458. {
  459. "description": "Change fn + letter/num to left_command + letter/num,Ban Fn+Q",
  460. "manipulators": [
  461. {
  462. "type": "basic",
  463. "from": {
  464. "key_code": "a",
  465. "modifiers": {
  466. "mandatory": [
  467. "fn"
  468. ],
  469. "optional": [
  470. "any"
  471. ]
  472. }
  473. },
  474. "to": [
  475. {
  476. "key_code": "a",
  477. "modifiers": [
  478. "left_command"
  479. ]
  480. }
  481. ]
  482. },
  483. {
  484. "type": "basic",
  485. "from": {
  486. "key_code": "b",
  487. "modifiers": {
  488. "mandatory": [
  489. "fn"
  490. ],
  491. "optional": [
  492. "any"
  493. ]
  494. }
  495. },
  496. "to": [
  497. {
  498. "key_code": "b",
  499. "modifiers": [
  500. "left_command"
  501. ]
  502. }
  503. ]
  504. },
  505. {
  506. "type": "basic",
  507. "from": {
  508. "key_code": "c",
  509. "modifiers": {
  510. "mandatory": [
  511. "fn"
  512. ],
  513. "optional": [
  514. "any"
  515. ]
  516. }
  517. },
  518. "to": [
  519. {
  520. "key_code": "c",
  521. "modifiers": [
  522. "left_command"
  523. ]
  524. }
  525. ]
  526. },
  527. {
  528. "type": "basic",
  529. "from": {
  530. "key_code": "d",
  531. "modifiers": {
  532. "mandatory": [
  533. "fn"
  534. ],
  535. "optional": [
  536. "any"
  537. ]
  538. }
  539. },
  540. "to": [
  541. {
  542. "key_code": "d",
  543. "modifiers": [
  544. "left_command"
  545. ]
  546. }
  547. ]
  548. },
  549. {
  550. "type": "basic",
  551. "from": {
  552. "key_code": "e",
  553. "modifiers": {
  554. "mandatory": [
  555. "fn"
  556. ],
  557. "optional": [
  558. "any"
  559. ]
  560. }
  561. },
  562. "to": [
  563. {
  564. "key_code": "e",
  565. "modifiers": [
  566. "left_command"
  567. ]
  568. }
  569. ]
  570. },
  571. {
  572. "type": "basic",
  573. "from": {
  574. "key_code": "f",
  575. "modifiers": {
  576. "mandatory": [
  577. "fn"
  578. ],
  579. "optional": [
  580. "any"
  581. ]
  582. }
  583. },
  584. "to": [
  585. {
  586. "key_code": "f",
  587. "modifiers": [
  588. "left_command"
  589. ]
  590. }
  591. ]
  592. },
  593. {
  594. "type": "basic",
  595. "from": {
  596. "key_code": "g",
  597. "modifiers": {
  598. "mandatory": [
  599. "fn"
  600. ],
  601. "optional": [
  602. "any"
  603. ]
  604. }
  605. },
  606. "to": [
  607. {
  608. "key_code": "g",
  609. "modifiers": [
  610. "left_command"
  611. ]
  612. }
  613. ]
  614. },
  615. {
  616. "type": "basic",
  617. "from": {
  618. "key_code": "h",
  619. "modifiers": {
  620. "mandatory": [
  621. "fn"
  622. ],
  623. "optional": [
  624. "any"
  625. ]
  626. }
  627. },
  628. "to": [
  629. {
  630. "key_code": "h",
  631. "modifiers": [
  632. "left_command"
  633. ]
  634. }
  635. ]
  636. },
  637. {
  638. "type": "basic",
  639. "from": {
  640. "key_code": "i",
  641. "modifiers": {
  642. "mandatory": [
  643. "fn"
  644. ],
  645. "optional": [
  646. "any"
  647. ]
  648. }
  649. },
  650. "to": [
  651. {
  652. "key_code": "i",
  653. "modifiers": [
  654. "left_command"
  655. ]
  656. }
  657. ]
  658. },
  659. {
  660. "type": "basic",
  661. "from": {
  662. "key_code": "j",
  663. "modifiers": {
  664. "mandatory": [
  665. "fn"
  666. ],
  667. "optional": [
  668. "any"
  669. ]
  670. }
  671. },
  672. "to": [
  673. {
  674. "key_code": "j",
  675. "modifiers": [
  676. "left_command"
  677. ]
  678. }
  679. ]
  680. },
  681. {
  682. "type": "basic",
  683. "from": {
  684. "key_code": "k",
  685. "modifiers": {
  686. "mandatory": [
  687. "fn"
  688. ],
  689. "optional": [
  690. "any"
  691. ]
  692. }
  693. },
  694. "to": [
  695. {
  696. "key_code": "k",
  697. "modifiers": [
  698. "left_command"
  699. ]
  700. }
  701. ]
  702. },
  703. {
  704. "type": "basic",
  705. "from": {
  706. "key_code": "l",
  707. "modifiers": {
  708. "mandatory": [
  709. "fn"
  710. ],
  711. "optional": [
  712. "any"
  713. ]
  714. }
  715. },
  716. "to": [
  717. {
  718. "key_code": "l",
  719. "modifiers": [
  720. "left_command"
  721. ]
  722. }
  723. ]
  724. },
  725. {
  726. "type": "basic",
  727. "from": {
  728. "key_code": "m",
  729. "modifiers": {
  730. "mandatory": [
  731. "fn"
  732. ],
  733. "optional": [
  734. "any"
  735. ]
  736. }
  737. },
  738. "to": [
  739. {
  740. "key_code": "m",
  741. "modifiers": [
  742. "left_command"
  743. ]
  744. }
  745. ]
  746. },
  747. {
  748. "type": "basic",
  749. "from": {
  750. "key_code": "n",
  751. "modifiers": {
  752. "mandatory": [
  753. "fn"
  754. ],
  755. "optional": [
  756. "any"
  757. ]
  758. }
  759. },
  760. "to": [
  761. {
  762. "key_code": "n",
  763. "modifiers": [
  764. "left_command"
  765. ]
  766. }
  767. ]
  768. },
  769. {
  770. "type": "basic",
  771. "from": {
  772. "key_code": "o",
  773. "modifiers": {
  774. "mandatory": [
  775. "fn"
  776. ],
  777. "optional": [
  778. "any"
  779. ]
  780. }
  781. },
  782. "to": [
  783. {
  784. "key_code": "o",
  785. "modifiers": [
  786. "left_command"
  787. ]
  788. }
  789. ]
  790. },
  791. {
  792. "type": "basic",
  793. "from": {
  794. "key_code": "p",
  795. "modifiers": {
  796. "mandatory": [
  797. "fn"
  798. ],
  799. "optional": [
  800. "any"
  801. ]
  802. }
  803. },
  804. "to": [
  805. {
  806. "key_code": "p",
  807. "modifiers": [
  808. "left_command"
  809. ]
  810. }
  811. ]
  812. },
  813. {
  814. "type": "basic",
  815. "from": {
  816. "key_code": "q",
  817. "modifiers": {
  818. "mandatory": [
  819. "fn"
  820. ],
  821. "optional": [
  822. "any"
  823. ]
  824. }
  825. },
  826. "to": [
  827. {
  828. "key_code": "q",
  829. "modifiers": [
  830. "left_control"
  831. ]
  832. }
  833. ]
  834. },
  835. {
  836. "type": "basic",
  837. "from": {
  838. "key_code": "r",
  839. "modifiers": {
  840. "mandatory": [
  841. "fn"
  842. ],
  843. "optional": [
  844. "any"
  845. ]
  846. }
  847. },
  848. "to": [
  849. {
  850. "key_code": "r",
  851. "modifiers": [
  852. "left_command"
  853. ]
  854. }
  855. ]
  856. },
  857. {
  858. "type": "basic",
  859. "from": {
  860. "key_code": "s",
  861. "modifiers": {
  862. "mandatory": [
  863. "fn"
  864. ],
  865. "optional": [
  866. "any"
  867. ]
  868. }
  869. },
  870. "to": [
  871. {
  872. "key_code": "s",
  873. "modifiers": [
  874. "left_command"
  875. ]
  876. }
  877. ]
  878. },
  879. {
  880. "type": "basic",
  881. "from": {
  882. "key_code": "t",
  883. "modifiers": {
  884. "mandatory": [
  885. "fn"
  886. ],
  887. "optional": [
  888. "any"
  889. ]
  890. }
  891. },
  892. "to": [
  893. {
  894. "key_code": "t",
  895. "modifiers": [
  896. "left_command"
  897. ]
  898. }
  899. ]
  900. },
  901. {
  902. "type": "basic",
  903. "from": {
  904. "key_code": "u",
  905. "modifiers": {
  906. "mandatory": [
  907. "fn"
  908. ],
  909. "optional": [
  910. "any"
  911. ]
  912. }
  913. },
  914. "to": [
  915. {
  916. "key_code": "u",
  917. "modifiers": [
  918. "left_command"
  919. ]
  920. }
  921. ]
  922. },
  923. {
  924. "type": "basic",
  925. "from": {
  926. "key_code": "v",
  927. "modifiers": {
  928. "mandatory": [
  929. "fn"
  930. ],
  931. "optional": [
  932. "any"
  933. ]
  934. }
  935. },
  936. "to": [
  937. {
  938. "key_code": "v",
  939. "modifiers": [
  940. "left_command"
  941. ]
  942. }
  943. ]
  944. },
  945. {
  946. "type": "basic",
  947. "from": {
  948. "key_code": "w",
  949. "modifiers": {
  950. "mandatory": [
  951. "fn"
  952. ],
  953. "optional": [
  954. "any"
  955. ]
  956. }
  957. },
  958. "to": [
  959. {
  960. "key_code": "w",
  961. "modifiers": [
  962. "left_command"
  963. ]
  964. }
  965. ]
  966. },
  967. {
  968. "type": "basic",
  969. "from": {
  970. "key_code": "x",
  971. "modifiers": {
  972. "mandatory": [
  973. "fn"
  974. ],
  975. "optional": [
  976. "any"
  977. ]
  978. }
  979. },
  980. "to": [
  981. {
  982. "key_code": "x",
  983. "modifiers": [
  984. "left_command"
  985. ]
  986. }
  987. ]
  988. },
  989. {
  990. "type": "basic",
  991. "from": {
  992. "key_code": "y",
  993. "modifiers": {
  994. "mandatory": [
  995. "fn"
  996. ],
  997. "optional": [
  998. "any"
  999. ]
  1000. }
  1001. },
  1002. "to": [
  1003. {
  1004. "key_code": "y",
  1005. "modifiers": [
  1006. "left_command"
  1007. ]
  1008. }
  1009. ]
  1010. },
  1011. {
  1012. "type": "basic",
  1013. "from": {
  1014. "key_code": "z",
  1015. "modifiers": {
  1016. "mandatory": [
  1017. "fn"
  1018. ],
  1019. "optional": [
  1020. "any"
  1021. ]
  1022. }
  1023. },
  1024. "to": [
  1025. {
  1026. "key_code": "z",
  1027. "modifiers": [
  1028. "left_command"
  1029. ]
  1030. }
  1031. ]
  1032. },
  1033. {
  1034. "type": "basic",
  1035. "from": {
  1036. "key_code": "1",
  1037. "modifiers": {
  1038. "mandatory": [
  1039. "fn"
  1040. ],
  1041. "optional": [
  1042. "any"
  1043. ]
  1044. }
  1045. },
  1046. "to": [
  1047. {
  1048. "key_code": "1",
  1049. "modifiers": [
  1050. "left_command"
  1051. ]
  1052. }
  1053. ]
  1054. },
  1055. {
  1056. "type": "basic",
  1057. "from": {
  1058. "key_code": "2",
  1059. "modifiers": {
  1060. "mandatory": [
  1061. "fn"
  1062. ],
  1063. "optional": [
  1064. "any"
  1065. ]
  1066. }
  1067. },
  1068. "to": [
  1069. {
  1070. "key_code": "2",
  1071. "modifiers": [
  1072. "left_command"
  1073. ]
  1074. }
  1075. ]
  1076. },
  1077. {
  1078. "type": "basic",
  1079. "from": {
  1080. "key_code": "3",
  1081. "modifiers": {
  1082. "mandatory": [
  1083. "fn"
  1084. ],
  1085. "optional": [
  1086. "any"
  1087. ]
  1088. }
  1089. },
  1090. "to": [
  1091. {
  1092. "key_code": "3",
  1093. "modifiers": [
  1094. "left_command"
  1095. ]
  1096. }
  1097. ]
  1098. },
  1099. {
  1100. "type": "basic",
  1101. "from": {
  1102. "key_code": "4",
  1103. "modifiers": {
  1104. "mandatory": [
  1105. "fn"
  1106. ],
  1107. "optional": [
  1108. "any"
  1109. ]
  1110. }
  1111. },
  1112. "to": [
  1113. {
  1114. "key_code": "4",
  1115. "modifiers": [
  1116. "left_command"
  1117. ]
  1118. }
  1119. ]
  1120. },
  1121. {
  1122. "type": "basic",
  1123. "from": {
  1124. "key_code": "5",
  1125. "modifiers": {
  1126. "mandatory": [
  1127. "fn"
  1128. ],
  1129. "optional": [
  1130. "any"
  1131. ]
  1132. }
  1133. },
  1134. "to": [
  1135. {
  1136. "key_code": "5",
  1137. "modifiers": [
  1138. "left_command"
  1139. ]
  1140. }
  1141. ]
  1142. },
  1143. {
  1144. "type": "basic",
  1145. "from": {
  1146. "key_code": "6",
  1147. "modifiers": {
  1148. "mandatory": [
  1149. "fn"
  1150. ],
  1151. "optional": [
  1152. "any"
  1153. ]
  1154. }
  1155. },
  1156. "to": [
  1157. {
  1158. "key_code": "6",
  1159. "modifiers": [
  1160. "left_command"
  1161. ]
  1162. }
  1163. ]
  1164. },
  1165. {
  1166. "type": "basic",
  1167. "from": {
  1168. "key_code": "7",
  1169. "modifiers": {
  1170. "mandatory": [
  1171. "fn"
  1172. ],
  1173. "optional": [
  1174. "any"
  1175. ]
  1176. }
  1177. },
  1178. "to": [
  1179. {
  1180. "key_code": "7",
  1181. "modifiers": [
  1182. "left_command"
  1183. ]
  1184. }
  1185. ]
  1186. },
  1187. {
  1188. "type": "basic",
  1189. "from": {
  1190. "key_code": "8",
  1191. "modifiers": {
  1192. "mandatory": [
  1193. "fn"
  1194. ],
  1195. "optional": [
  1196. "any"
  1197. ]
  1198. }
  1199. },
  1200. "to": [
  1201. {
  1202. "key_code": "8",
  1203. "modifiers": [
  1204. "left_command"
  1205. ]
  1206. }
  1207. ]
  1208. },
  1209. {
  1210. "type": "basic",
  1211. "from": {
  1212. "key_code": "9",
  1213. "modifiers": {
  1214. "mandatory": [
  1215. "fn"
  1216. ],
  1217. "optional": [
  1218. "any"
  1219. ]
  1220. }
  1221. },
  1222. "to": [
  1223. {
  1224. "key_code": "9",
  1225. "modifiers": [
  1226. "left_command"
  1227. ]
  1228. }
  1229. ]
  1230. },
  1231. {
  1232. "type": "basic",
  1233. "from": {
  1234. "key_code": "0",
  1235. "modifiers": {
  1236. "mandatory": [
  1237. "fn"
  1238. ],
  1239. "optional": [
  1240. "any"
  1241. ]
  1242. }
  1243. },
  1244. "to": [
  1245. {
  1246. "key_code": "0",
  1247. "modifiers": [
  1248. "left_command"
  1249. ]
  1250. }
  1251. ]
  1252. }
  1253. ]
  1254. }
  1255. ]
  1256. }