macOS 27 Beta 5 includes a new "Pocket Tuning Window" that can change the scroll edge effect in real time in supported apps.
Watch the video for a demo of how it all works. You can tune both light and dark mode effects, and can really make the scroll edge effect disappear.
To enable, make the AppKit debug menu visible and select the Pocket Tuning option (h/t u/7racin on Reddit):
Restart your apps to see the new menu.
To disable:
Or, with SIP off, except for locally developed apps: open the app and run the following command after replacing the app name:
Watch the video for a demo of how it all works. You can tune both light and dark mode effects, and can really make the scroll edge effect disappear.
To enable, make the AppKit debug menu visible and select the Pocket Tuning option (h/t u/7racin on Reddit):
Bash:
defaults write -g _NS_4445425547 -bool true
Restart your apps to see the new menu.
To disable:
Bash:
defaults delete -g _NS_4445425547
Or, with SIP off, except for locally developed apps: open the app and run the following command after replacing the app name:
Bash:
lldb -b -p "$(pgrep -x TV)" \
-o 'expr -l objc++ -- @import AppKit' \
-o 'expr -l objc++ -- id p=(id)[[(id)NSClassFromString(@"NSDebugMenuPocketTuningProvider") alloc] init]; (void)[p performSelector:@selector(_showPocketTuning:) withObject:nil]' \
-o detach
Last edited: