The text mode lie: why modern TUIs are a nightmare for accessibility
Many developers wrongly believe that an application running in a terminal is automatically accessible. They fail to consider that most modern Text User Interfaces (TUIs) are actually more difficult for screen readers to navigate than poorly coded graphical interfaces. These frameworks, such as Ink (JS/React), Bubble Tea (Go), and tcell, make accessibility for blind users significantly worse.
At its core, the command-line interface is a linear stream of data, with the newest information appearing at the bottom and the older data going up. Screen readers can typically handle this format with ease. However, modern TUIs have transformed this linear approach into a "2D grid of pixels," where each character cell represents a pixel. This shift from a temporal layout to a spatial layout disrupts the screen reader's ability to comprehend the interface.
While some older TUIs were designed with terminal compatibility in mind, modern TUIs do not utilize the terminal's inherent features effectively. For instance, Irssi uses VT100 scrolling regions instead of redrawing the entire screen after each update. Unfortunately, many developers creating these modern TUIs have not prioritized accessibility, which has led to several problematic issues.
Reeves' article serves as a wake-up call for the developers who create these modern TUIs. It is essential that they start taking accessibility seriously to ensure that their applications are usable by all users, including those who rely on screen readers.
Written by urgent.news from Lobsters's reporting — not their text. Machine-written — may contain errors; check the original before relying on it.