()
| 1657 | |
| 1658 | |
| 1659 | def _detect_rc_file() -> str: |
| 1660 | shell = os.environ.get("SHELL", "") |
| 1661 | if "zsh" in shell: |
| 1662 | return "~/.zshrc" |
| 1663 | if "fish" in shell: |
| 1664 | return "~/.config/fish/config.fish" |
| 1665 | return "~/.bashrc" |
| 1666 | |
| 1667 | |
| 1668 | def _setup_env_display() -> tuple[str, str, str]: |
no test coverage detected