Revert "feat(web): enable tmux status bar in web terminal (#1470)" (#1519)

This reverts commit 84cd105c61.
This commit is contained in:
Priyanshu Choudhary 2026-04-29 00:57:17 +05:30 committed by GitHub
parent 60e8c88100
commit 5f671ee3c7
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 3 additions and 3 deletions

View File

@ -286,10 +286,10 @@ class TerminalManager {
console.error(`[MuxServer] Failed to set mouse mode for ${tmuxSessionId}:`, err.message);
});
// Enable the status bar for session context visibility
const statusProc = spawn(this.TMUX, ["set-option", "-t", tmuxSessionId, "status", "on"]);
// Hide the status bar
const statusProc = spawn(this.TMUX, ["set-option", "-t", tmuxSessionId, "status", "off"]);
statusProc.on("error", (err) => {
console.error(`[MuxServer] Failed to enable status bar for ${tmuxSessionId}:`, err.message);
console.error(`[MuxServer] Failed to hide status bar for ${tmuxSessionId}:`, err.message);
});
// Build environment