Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Custom gestures support #288

Merged
merged 4 commits into from
Apr 1, 2020
Merged

Custom gestures support #288

merged 4 commits into from
Apr 1, 2020

Conversation

FedorZaytsev
Copy link
Collaborator

Hi,

This PR add support for actions on swipe gestures. This is a logical extension for an existing 2-3 finger swipe for volume/brightness. To add an action on a gesture you need to create an object in preset with the following params:

{
     "type": "swipe",
    "fingers": 2,            // number of fingers required (2,3 or 4)
    "direction": "right",    // direction of swipe (right/left)
    "minOffset" 10,          // optional: minimal required offset for gesture to emit event
    "sourceApple": {         // optional: apple script to run
        "inline": "beep"
    },
    "sourceBash": {          // optional: bash script to run
        "inline": "touch /Users/lobster/test"
    }
}

In my opinion it is highly usable for some cases, for example for binding music track change on 2 finger swipes.

Legacy 2/3 finger swipe for volume/brightness is still working

Fedor Zaitsev and others added 4 commits February 28, 2020 02:10
Added explanation for missing parameters (background, title and image)
AppleScriptTouchBarItem now allow to specify any number of icons which can be changed from the script. You cannot change icon from touch event. To change icon, you need to return array from your script with 2 values - title and icn name. More info in readme
@Toxblh
Copy link
Owner

Toxblh commented Mar 31, 2020

I checked and looks like doesn't work width attribute for buttons/

@FedorZaytsev
Copy link
Collaborator Author

Can you explain in more details?

In my opinion, gesture elements are not supposed to be visible and should work with whole touch bar. This is how I did it and it doesn't make much sense to support width param.

Do you have another opinion about width param?

@Toxblh
Copy link
Owner

Toxblh commented Apr 1, 2020

If I set "width" for elements with "align:left", so it's looks like doesn't effect

@Toxblh Toxblh merged commit a0fc0b3 into Toxblh:master Apr 1, 2020
tomeresk pushed a commit to tomeresk/MTMR that referenced this pull request Jul 16, 2021
* Updated README

Added explanation for missing parameters (background, title and image)

* Implemented changable icons for AppleScriptTouchBarItem

AppleScriptTouchBarItem now allow to specify any number of icons which can be changed from the script. You cannot change icon from touch event. To change icon, you need to return array from your script with 2 values - title and icn name. More info in readme

* Implemented custom swipe actions

Co-authored-by: Fedor Zaitsev <lobster@Fedors-MacBook-Pro.local>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

2 participants