Skip to content

Instantly share code, notes, and snippets.

@ndesgranges
Last active July 27, 2024 11:52
Show Gist options
  • Save ndesgranges/213ee4a4ed4684e2760a2e0fe161ab4d to your computer and use it in GitHub Desktop.
Save ndesgranges/213ee4a4ed4684e2760a2e0fe161ab4d to your computer and use it in GitHub Desktop.
Raycast - restart UnnaturalScrollWheels
#!/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