YesI want to use a new Air M1 with lid closed and connected to 32” 5K monitor using USB-C. Can I connect and use Magic Keyboard 2 and Magic Trackpad 2 in this configuration?
That's correct. And it is annoying.Someone tell me, I want to have the trackpad and mouse settings different on scrolling direction...meaning natural vs. reverse. It seems to me you can only choose to set them both to the same settings?
That's super dumb and seems like a big oversight. I'm new to MacOS...has it always been that way?That's correct. And it is annoying.
As far as I recall it has been.That's super dumb and seems like a big oversight. I'm new to MacOS...has it always been that way?
Do you use them at the same time? It should be possible to write a script that changes the setting and making it a Services menu item. Not a perfect solution but I use it for the trackpad Tap to Click setting which is great when I'm using the external Magic Trackpad but awful when I use the MacBook Air trackpad. It doesn't help much though if you use the mouse and trackpad at the same time frequently.That's super dumb and seems like a big oversight. I'm new to MacOS...has it always been that way?
No not at the same time but I have to change the settings every time I undock...Do you use them at the same time? It should be possible to write a script that changes the setting and making it a Services menu item. Not a perfect solution but I use it for the trackpad Tap to Click setting which is great when I'm using the external Magic Trackpad but awful when I use the MacBook Air trackpad. It doesn't help much though if you use the mouse and trackpad at the same time frequently.
I’ll create an Automator service when I get a chance later.No not at the same time but I have to change the settings every time I undock...
Nice!I’ll create an Automator service when I get a chance later.
on run {input, parameters}
tell application "System Preferences"
activate
end tell
tell application "System Events"
tell process "System Preferences"
delay 1
click the menu item "Trackpad" of the menu "View" of menu bar 1
delay 1
click the radio button "Scroll & Zoom" of the first tab group of window "Trackpad"
click checkbox 1 of tab group 1 of window "Trackpad"
end tell
end tell
return input
end run