Is there any keyboard shortcut to go full screen in Zotero in Mac OS Sonoma 14.5?

ctrl+cmd+F does not toggle full screen in Mac OS Sonoma 14.5. Are you going to fix that? Thanks
  • We'll look into it.
  • Fn + F should turn Zotero full screen like most other Mac apps.
  • edited October 11, 2024
    I ended up writing a Karabiner Elements Complex Modification to toggle the full screen with Raycast:

    ```
    {
    "description": "Zotero Fn + F to Full Screen",
    "manipulators": [
    {
    "conditions": [
    {
    "bundle_identifiers": [
    "^org\\.zotero\\.zotero$"
    ],
    "type": "frontmost_application_if"
    }
    ],
    "from": {
    "key_code": "f",
    "modifiers": { "mandatory": ["fn"] }
    },
    "to": [{ "shell_command": "open -g 'raycast://extensions/raycast/window-management/toggle-fullscreen'" }],
    "type": "basic"
    }
    ]
    }
    ```
Sign In or Register to comment.