Replies: 1 comment
-
Disabling the builtin menu is the easy part - there's a hidden setting to do that: $ defaults write -g NSZoomButtonShowMenu -bool no
$ # to bring it back:
$ defaults delete -g NSZoomButtonShowMenu Note that apps only seem to read this when they launch, so you'll probably want to log out and back in (or restart) to make sure everything picks up the new setting. (Note: there's an alternate approach below, if you want to only disable the standard menu while Hammerspoon is running.) The other parts are going to be somewhat trickier, unfortunately. I tried attaching an Failing that, the only approach I know of would be to use an Example of watching for zoom button hover using
|
Beta Was this translation helpful? Give feedback.
-
I'd like to override the dialog that pops up when you hover over the zoom button on windows:
For instance, Moom manages to replace the dialog with one of its own:
In particular, I'm wondering:
Thank you!
Beta Was this translation helpful? Give feedback.
All reactions