Last active
February 12, 2026 10:53
-
-
Save findmory/82593b407ef436fe8a39f1bbb6802690 to your computer and use it in GitHub Desktop.
Revisions
-
findmory revised this gist
Jul 7, 2020 . 1 changed file with 1 addition and 0 deletions.There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -25,6 +25,7 @@ Action: “Move Left a space” [2] On client - enable BetterTouchTool Webserver  -
findmory revised this gist
Jul 7, 2020 . 1 changed file with 1 addition and 0 deletions.There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -31,6 +31,7 @@ Action: “Move Left a space” [3] On the HOST, disable *Swipe Better full-screen apps” and “mission control” from the Trackpad preferences (you are going to control all these gestures using BTT)  [4] In Trackpad items in BTT on host create an action for “3 Finger Swipe up”, another for “3 Finger Swipe Right”, etc Each one should execute the terminal command to send the curl command which calls the named action on your client. -
findmory renamed this gist
Jul 7, 2020 . 1 changed file with 0 additions and 0 deletions.There are no files selected for viewing
File renamed without changes. -
findmory created this gist
Jul 7, 2020 .There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -0,0 +1,44 @@ ## Problem: *Controlling a remote Mac desktop using a tool like Barrier or Synergy doesn't allow for trackpad gestures to be sent to the client machine.* ## Solution: Use [Better Touch Tool](https://folivora.ai/) on host machine to handle the gestures and send a remote command to the client machine. ### Steps to setup: [1] On the CLIENT machine in BTT setup these **Named triggers**: ``` Name: “mission” Action: “Mission Control” ``` ``` Name: “right” Action: “Move Right a Space” ``` ``` Name: “left” Action: “Move Left a space” ```  [2] On client - enable BetterTouchTool Webserver  [3] On the HOST, disable *Swipe Better full-screen apps” and “mission control” from the Trackpad preferences (you are going to control all these gestures using BTT)  [4] In Trackpad items in BTT on host create an action for “3 Finger Swipe up”, another for “3 Finger Swipe Right”, etc Each one should execute the terminal command to send the curl command which calls the named action on your client. For example when you 3 finger swipe left, you call this: `curl http://169.254.100.150:12345/trigger_named/?trigger_name=left`  I like to do a modifier key for the remote machine (here I’m using ctrl) so the action doesn’t trigger on the host. And then your host actions are also setup as you can see in the screenshot above.