Log In
Register
Upgrade Storage
Home
Groups
Documentation
Forums
Get Involved
Is there any keyboard shortcut to go full screen in Zotero in Mac OS Sonoma 14.5?
goahead97
July 5, 2024
ctrl+cmd+F does not toggle full screen in Mac OS Sonoma 14.5. Are you going to fix that? Thanks
dstillman
July 6, 2024
We'll look into it.
wmstack
October 10, 2024
Fn + F should turn Zotero full screen like most other Mac apps.
wmstack
October 11, 2024
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.
Upload image file with the file dialog or by dragging and dropping images onto the dashed region
Select a file
Close
Ok
```
{
"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"
}
]
}
```