Start Your Journey with Linux Command Line
![]() |
| How to deactivate screen reader in Kali Linux |
Have you ever logged into your Kali Linux machine only to be met by a voice narrating every mouse movement and keystroke? While accessibility tools are vital, having a screen reader unexpectedly activate can be distracting—especially when you're in the middle of a terminal session.
The screen reader in this case is called "ORCA". Orca in the context of Kali Linux, or any other Linux distribution, is a free, open-source screen reader that provides access to the graphical desktop environments. It is designed to help visually impaired users use software applications and navigate the operating system. Orca works by converting on-screen content into speech and Braille output, enabling users who are blind or have low vision to interact with their computers more easily.
If this behavior is annoying or it has been accedently activated, or even if you want to deactivate it temporarely and then have it again, here is how you can achieve this:
In most cases, Orca is activated by a "fat-finger" keyboard shortcut. The default combination is:
Alt + Super (Windows Key) + S
Pressing this again may toggle it off, but if that doesn't work, here are the technical ways to handle it.
If you just need silence right now, open your terminal and run:
killall orca
Note: This stops the process immediately, but it may restart the next time you log in.
If you want to keep the software but stop the auto-start behavior:
If you are certain you will never need the screen reader and want to save disk space, you can uninstall it entirely:
sudo apt-get purge orca -y
sudo apt-get autoremove
| How to Deactivate Screen Reader in Kali Linux |
The quickest way to stop the Orca screen reader immediately is to press Super+Esc. This keyboard shortcut toggles Orca on and off without opening any settings panel. If the shortcut does not work because the desktop has not yet fully loaded, you can run orca -q from a terminal to kill the Orca process directly.
To prevent Orca from launching automatically at every login, navigate to your desktop environment's accessibility settings. In GNOME, open Settings > Accessibility and toggle off the screen reader option. In KDE Plasma, go to System Settings > Accessibility > Screen Reader and disable it. Alternatively, you can remove Orca from the autostart directory by deleting or renaming the file at ~/.config/autostart/orca-autostart.desktop if it exists.
For a more permanent approach, you can uninstall Orca entirely by running sudo apt remove orca. However, keep in mind that this removes accessibility support from your system, so only do this if you are certain you will not need it in the future.
Super+Esc to toggle Orca on or off instantly without navigating menus.orca -q in the terminal to immediately quit the screen reader process.orca-autostart.desktop file from ~/.config/autostart/ to prevent Orca from launching at login.sudo apt remove orca if you do not need screen reader support.Kali Linux ships with accessibility features enabled by default. Orca is configured to auto-start so that visually impaired users have immediate access to the screen reader. You can disable this behavior through the desktop accessibility settings or by removing the autostart desktop file.
No. Disabling Orca only stops the screen reader from running. It does not affect any other system functionality, security tools, or installed packages.
Yes. Simply run sudo apt install orca to reinstall it. The screen reader will be available again and you can re-enable it in the accessibility settings.
If the keyboard shortcut fails, open a terminal using Ctrl+Alt+T or the application menu, then type orca -q and press Enter. This sends a quit signal directly to the Orca process and stops it immediately.
Comments
Post a Comment
Your opinion matters, your voice makes us proud and happy. Your words are our motivation.