Last active
June 13, 2024 00:03
-
-
Save khurshid-alam/9f545bdc54fb5e31f4f1273d5e060261 to your computer and use it in GitHub Desktop.
Toggle mac mouse fix, to be used with Better touch tool/Keyboard Maestro
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 characters
set appName to "Mac Mouse Fix Helper" | |
if application appName is not running then | |
set cmdStr to "open \"/Applications/Mac Mouse Fix.app/Contents/Library/LoginItems/Mac Mouse Fix Helper.app\"" | |
do shell script cmdStr | |
else if application appName is running then | |
do shell script "killall \"Mac Mouse Fix Helper\"" | |
end if |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment