14

Currently, I can navigate to "accessibility settings" and turn the on-screen keyboard on or off using the settings GUI.

How can I do this via the command line? so that it may be made a part of the script. A similar question has answers that rely on third-party code.

However, there must be a native way to toggle this setting? (since it's linux).

What is the native way? Other settings can be customized by dconf, can this be too?

Peeyush Kushwaha
  • 399
  • 1
  • 2
  • 17

1 Answers1

10

the command line to enable or disable the Onscreen Keyboard is

Enabling:

gsettings set org.gnome.desktop.a11y.applications screen-keyboard-enabled true

Disabling:

gsettings set org.gnome.desktop.a11y.applications screen-keyboard-enabled false