DEV Community

Cover image for Toggle Natural Scroll in MacOS
Prakhar Yadav
Prakhar Yadav

Posted on β€’ Originally published at prakhar.hashnode.dev

Toggle Natural Scroll in MacOS

πŸ–± If you are one of those people who are irritated by the repetitive process of toggling the natural scroll of MacOs while switching between trackpad and mouse, this is going to help you. πŸ‘¨β€πŸ’»πŸ‘©β€πŸ’»

πŸ“œ Open Apple Script and paste the script below.

try
    tell application "System Preferences"
        activate
        set current pane to pane "com.apple.preference.trackpad"
    end tell
    delay 2
    tell application "System Events"
        tell process "System Preferences"
            click radio button "Scroll & Zoom" of tab group 1 of window "Trackpad"
            click checkbox 1 of tab group 1 of window "Trackpad"
            tell application "System Preferences" to quit
        end tell
    end tell
end try
Enter fullscreen mode Exit fullscreen mode

Save this script as an application and move it to Dock down there. Now each time you connect a mouse, just click the script application you moved on the dock.

πŸ”— If you face trouble or need more help, you can refer the place where I found this: https://apple.stackexchange.com/questions/153243/changing-trackpad-scroll-direction-with-applescript-in-yosemite

Happy working! πŸ₯‚

Image of Datadog

The Future of AI, LLMs, and Observability on Google Cloud

Datadog sat down with Google’s Director of AI to discuss the current and future states of AI, ML, and LLMs on Google Cloud. Discover 7 key insights for technical leaders, covering everything from upskilling teams to observability best practices

Learn More

Top comments (0)

The Most Contextual AI Development Assistant

Pieces.app image

Our centralized storage agent works on-device, unifying various developer tools to proactively capture and enrich useful materials, streamline collaboration, and solve complex problems through a contextual understanding of your unique workflow.

πŸ‘₯ Ideal for solo developers, teams, and cross-company projects

Learn more

πŸ‘‹ Kindness is contagious

Please leave a ❀️ or a friendly comment on this post if you found it helpful!

Okay