aboutsummaryrefslogtreecommitdiff
path: root/qemu-tui.py
diff options
context:
space:
mode:
Diffstat (limited to 'qemu-tui.py')
-rwxr-xr-xqemu-tui.py4
1 files changed, 3 insertions, 1 deletions
diff --git a/qemu-tui.py b/qemu-tui.py
index 7e0c4ea..3cd5d4e 100755
--- a/qemu-tui.py
+++ b/qemu-tui.py
@@ -252,6 +252,8 @@ class VMManager:
if cfg.extra_args:
cmd += shlex.split(cfg.extra_args)
+ cmd += ["-serial", "none"]
+
MONITOR_DIR.mkdir(parents=True, exist_ok=True)
sock = str(MONITOR_DIR / f"{cfg.name}.sock")
cmd += ["-monitor", f"unix:{sock},server,nowait"]
@@ -2296,7 +2298,7 @@ class TUI:
except curses.error:
pass
- tabs = ["[I]nfo", "[C]ommand", "[L]og", "[D]isk", "[S]napshots", "[M]onitor"]
+ tabs = ["Info", "Command", "Log", "Disk", "Snapshots", "Monitor"]
tx = x0
for i, t in enumerate(tabs):
attr = (curses.color_pair(2) | curses.A_BOLD) if i == self.tab else curses.color_pair(6)