# Copyright 2024 Caleb Connolly # SPDX-License-Identifier: GPL-3.0-or-later from __future__ import annotations from pmb import commands import pmb.helpers.run class Shell(commands.Command): def __init__(self) -> None: pass def run(self) -> None: pmb.helpers.run.user(["sh", "-i"], output="tui", check=False)