How do I enable sticky keys In Ubuntu 12.04?

I'm running Ubuntu 12.04. How do I enable sticky keys like in Windows?


To enable Sticky Keys go to System Settings --> Universal Access --> Typing --> And click the Sticky Keys switch.

enter image description here


You can also change it from the command line:

gsettings set org.gnome.desktop.a11y.keyboard stickykeys-enable true  

As well as the other two options:

Disable if two keys are pressed together:

gsettings set org.gnome.desktop.a11y.keyboard stickykeys-two-key-off true 

And the beeps:

gsettings set org.gnome.desktop.a11y.keyboard stickykeys-modifier-beep true  

You can disable each of these by replacing true with false in the commands.