Advertisement
Guest User

Untitled

a guest
Aug 25th, 2019
129
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.55 KB | None | 0 0
  1. <?xml version="1.0" encoding="utf-8" ?>
  2. <!-- transformation for clipboard actions (cut copy paste) -->
  3. <!-- layout specific -->
  4. <layouts>
  5. <!-- Dvorak X C V are not on same physical position as on US keyboard. -->
  6. <layout name="com.apple.keylayout.Dvorak">
  7. <transformations>
  8. <!-- Command+X to Control+X -->
  9. <transform>
  10. <from command="1" key="B" />
  11. <to control="1" key="B" />
  12. </transform>
  13. <!-- Command+C to Control+C -->
  14. <transform>
  15. <from command="1" key="I" />
  16. <to control="1" key="I" />
  17. </transform>
  18. <!-- Command+V to Control+V -->
  19. <transform>
  20. <from command="1" key="Period" />
  21. <to control="1" key="Period" />
  22. </transform>
  23. </transformations>
  24. </layout>
  25. <!-- the default is US keyboard physical position for X C V -->
  26. <layout name="default">
  27. <transformations>
  28. <!-- Command+X to Control+X -->
  29. <transform>
  30. <from command="1" key="X" />
  31. <to control="1" key="X" />
  32. </transform>
  33. <!-- Command+C to Control+C -->
  34. <transform>
  35. <from command="1" key="C" />
  36. <to control="1" key="C" />
  37. </transform>
  38. <!-- Command+V to Control+V -->
  39. <transform>
  40. <from command="1" key="V" />
  41. <to control="1" key="V" />
  42. </transform>
  43. <!-- Command+V to Control+S -->
  44. <transform>
  45. <from command="1" key="S" />
  46. <to control="1" key="S" />
  47. </transform>
  48. <!-- Command+V to Control+F -->
  49. <transform>
  50. <from command="1" key="F" />
  51. <to control="1" key="F" />
  52. </transform>
  53. <!-- Command+V to Control+Z -->
  54. <transform>
  55. <from command="1" key="Z" />
  56. <to control="1" key="Z" />
  57. </transform>
  58. <transform>
  59. <from shift="1" command="1" key="Z" />
  60. <to shift="1" control="1" key="Z" />
  61. </transform>
  62. <transform>
  63. <from shift="1" command="1" key="C" />
  64. <to shift="1" control="1" key="C" />
  65. </transform>
  66. <transform>
  67. <from shift="1" command="1" key="Z" />
  68. <to shift="1" control="1" key="Z" />
  69. </transform>
  70. </transformations>
  71. </layout>
  72. </layouts>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement