Last active
July 27, 2024 11:52
-
-
Save ndesgranges/213ee4a4ed4684e2760a2e0fe161ab4d to your computer and use it in GitHub Desktop.
Raycast - restart UnnaturalScrollWheels
This file contains 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
#!/usr/bin/osascript | |
# Required parameters: | |
# @raycast.schemaVersion 1 | |
# @raycast.title Fix scroll | |
# @raycast.mode silent | |
# Optional parameters: | |
# @raycast.icon 🖱️ | |
# Documentation: | |
# @raycast.description restart UnnaturalScrollWheels | |
# @raycast.author ndesgranges | |
# @raycast.authorURL https://github.com/ndesgranges | |
tell application "UnnaturalScrollWheels" to if it is running then quit | |
tell application "UnnaturalScrollWheels" to activate | |
tell me to exit |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment