From 165f69023b73898e424949a8c6a2a9de86077cfd Mon Sep 17 00:00:00 2001 From: Andreas Kling Date: Sat, 30 May 2020 22:11:35 +0200 Subject: LibVT: Allow updating the window progress via an escape sequence You can now request an update of the terminal's window progress by sending this escape sequence: ]9;;; I'm sure we can find many interesting uses for this! :^) --- Kernel/TTY/VirtualConsole.cpp | 5 +++++ 1 file changed, 5 insertions(+) (limited to 'Kernel/TTY/VirtualConsole.cpp') diff --git a/Kernel/TTY/VirtualConsole.cpp b/Kernel/TTY/VirtualConsole.cpp index 3716421bfe..f7cb4a376e 100644 --- a/Kernel/TTY/VirtualConsole.cpp +++ b/Kernel/TTY/VirtualConsole.cpp @@ -307,6 +307,11 @@ void VirtualConsole::set_window_title(const StringView&) // Do nothing. } +void VirtualConsole::set_window_progress(int, int) +{ + // Do nothing. +} + void VirtualConsole::terminal_did_resize(u16 columns, u16 rows) { ASSERT(columns == 80); -- cgit v1.2.3