diff --git a/Userland/Utilities/top.cpp b/Userland/Utilities/top.cpp index 66c67d6ded6023..d4155f0a39b75b 100644 --- a/Userland/Utilities/top.cpp +++ b/Userland/Utilities/top.cpp @@ -212,6 +212,8 @@ static ErrorOr setup_tty() struct termios raw = g_previous_tty_settings; raw.c_lflag &= ~(ECHO | ICANON); + raw.c_cc[VMIN] = 0; + raw.c_cc[VTIME] = 0; // Disable echo and line buffering TRY(Core::System::tcsetattr(STDOUT_FILENO, TCSAFLUSH, raw));