From 7cfbd8a6409c7714dec4a3c0974b7abd336155bf Mon Sep 17 00:00:00 2001 From: 2 * r + 2 * t <61896496+soramanew@users.noreply.github.com> Date: Sun, 15 Jun 2025 15:49:07 +1000 Subject: shell: fix starting shell Don't silence shell output Also use -c caelestia cause install to system --- src/caelestia/subcommands/shell.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'src/caelestia/subcommands/shell.py') diff --git a/src/caelestia/subcommands/shell.py b/src/caelestia/subcommands/shell.py index 25a39d8..ef7fbab 100644 --- a/src/caelestia/subcommands/shell.py +++ b/src/caelestia/subcommands/shell.py @@ -22,10 +22,10 @@ class Command: self.message(*self.args.message) else: # Start the shell - self.shell() + subprocess.Popen(["qs", "-c", "caelestia"]).wait() def shell(self, *args: list[str]) -> str: - return subprocess.check_output(["qs", "-p", paths.c_data_dir / "shell", *args], text=True) + return subprocess.check_output(["qs", "-c", "caelestia", *args], text=True) def print_ipc(self) -> None: print(self.shell("ipc", "show"), end="") -- cgit v1.2.3-freya