Revert "feat(desktop): terminal pane (#5081)"

This reverts commit d763c11a6d.
This commit is contained in:
Aiden Cline 2025-12-04 15:57:01 -06:00
commit f9dcd97936
27 changed files with 395 additions and 2292 deletions

View file

@ -1,13 +0,0 @@
export function shell() {
const s = process.env.SHELL
if (s) return s
if (process.platform === "darwin") {
return "/bin/zsh"
}
if (process.platform === "win32") {
return process.env.COMSPEC || "cmd.exe"
}
const bash = Bun.which("bash")
if (bash) return bash
return "bash"
}