We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
On macOS Monterey, after dragging the 'Display' section of Control Center out into its own menu extra:
from talon import Module, actions, ui from pprint import pprint as pp mod = Module() @mod.action_class class Actions: def test(): """test""" s = ui.apps(bundle='com.apple.controlcenter')[0] dm = s.children.find_one(AXRole='AXMenuBarItem', AXIdentifier='com.apple.menuextra.display') dm.perform('AXPress') actions.sleep(0.1) pp(s.children[0].children) pp(s.children[0].AXChildren) dm.perform('AXPress')
>>> actions.user.test() [] [<AXScrollArea>, <AXButton 'Display Preferences…'>]
The text was updated successfully, but these errors were encountered:
Fixed in the latest beta. Thanks!
Sorry, something went wrong.
No branches or pull requests
On macOS Monterey, after dragging the 'Display' section of Control Center out into its own menu extra:
The text was updated successfully, but these errors were encountered: