Replies: 1 comment
-
|
For anyone finding this looking for a workaround, create this script and bind a custom keyboard shortcut to it: #!/bin/bash
# SPDX-FileCopyrightText: 2026 Joe Pitt
#
# SPDX-License-Identifier: GPL-2.0-or-later
# Script to toggle cinnamon magnifier on/off
MAG_STATE=$(dconf read /org/cinnamon/desktop/a11y/applications/screen-magnifier-enabled)
if [[ "${MAG_STATE}" != "true" ]]; then
dconf write /org/cinnamon/desktop/a11y/applications/screen-magnifier-enabled true
else
dconf write /org/cinnamon/desktop/a11y/applications/screen-magnifier-enabled false
fi
|
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
-
Please add a keyboard shortcut under the Universal Access section to toggle zoom on and off, I'd suggest
alt+super+0as the default as then all three zoom controls are next to each other and easy to remember.There are two main reasons this is needed:
Super+Mouse Wheelto zoom in and out, this is very clunky to use regularly and can be very tricky to get back to the right zoom level, a simple toggle zoom keyboard shortcut would make this instantaneous.Other than this and linuxmint/cinnamon#12868, I'm really happy with the builtin magnifier so far (I've only been using Cinnamon for a couple of days at this point).
This is related to, but I think different from:
Beta Was this translation helpful? Give feedback.
All reactions