Advertisement
Guest User

Untitled

a guest
Apr 1st, 2020
133
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.70 KB | None | 0 0
  1. {
  2. "title": "CMD-TAB Citrix workarounds",
  3. "rules": [
  4. {
  5. "description": "CMD-TAB to Cmd-fn-TAB",
  6. "manipulators": [
  7. {
  8. "conditions": [
  9. {
  10. "bundle_identifiers": [
  11. "com.citrix.XenAppViewer"
  12. ],
  13. "type": "frontmost_application_if"
  14. }
  15. ],
  16. "type": "basic",
  17. "from": {
  18. "key_code": "tab",
  19. "modifiers": {
  20. "mandatory": [
  21. "command"
  22. ],
  23. "optional": [
  24. "any"
  25. ]
  26. }
  27. },
  28. "to": [
  29. {
  30. "key_code": "tab",
  31. "modifiers": [
  32. "command",
  33. "fn"
  34. ]
  35. }
  36. ]
  37. }
  38. ]
  39. },
  40. {
  41. "description": "CMD-TAB to Cmd-Option-fn-TAB",
  42. "manipulators": [
  43. {
  44. "conditions": [
  45. {
  46. "bundle_identifiers": [
  47. "com.citrix.XenAppViewer"
  48. ],
  49. "type": "frontmost_application_if"
  50. }
  51. ],
  52. "type": "basic",
  53. "from": {
  54. "key_code": "tab",
  55. "modifiers": {
  56. "mandatory": [
  57. "command"
  58. ],
  59. "optional": [
  60. "any"
  61. ]
  62. }
  63. },
  64. "to": [
  65. {
  66. "key_code": "tab",
  67. "modifiers": [
  68. "command",
  69. "left_option",
  70. "fn"
  71. ]
  72. }
  73. ]
  74. }
  75. ]
  76. }
  77. ]
  78. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement