<p align="center">
<a href="https://github.com/starship/starship">Starship</a> cross-shell prompt in xonsh shell.
<br><br>
<img src="https://repository-images.githubusercontent.com/345190141/5ab8de00-7ed9-11eb-8545-3582ec7e054a">
</p>
<p align="center">
If you like the idea click ⭐ on the repo and <a href="https://twitter.com/intent/tweet?text=Nice%20prompt%20for%20the%20xonsh%20shell!&url=https://github.com/anki-code/xontrib-xontrib-prompt-starship" target="_blank">tweet</a>.
</p>
Additional features:
* You can split the prompt to left, right and bottom parts.
## Installation
To install use pip:
```bash
# You already have Starship installed. Then:
xpip install xontrib-prompt-starship
# or: xpip install -U git+https://github.com/anki-code/xontrib-prompt-starship
```
## Usage
```bash
xontrib load prompt_starship
```
## Recommendation
We suggest to use `@` character to remember about [you're using xonsh syntax](https://github.com/anki-code/xonsh-cheatsheet/blob/main/README.md#three-most-frequent-things-that-newcomers-overlook) and to potentially [spread the word about xonsh](https://github.com/xonsh/xonsh#the-xonsh-shell-community) if you make a screenshot or show your terminal to friends or collegues:
```ini
mkdir -p ~/.config/ && echo @("""
[character]
success_symbol = "[@](bold green)"
error_symbol = "[@](bold red)"
""".strip()) > ~/.config/starship_xonsh.toml
$STARSHIP_CONFIG = '~/.config/starship_xonsh.toml'
xontrib load prompt_starship
```
## Configuration
You can set the different starship configs for left, right and bottom parts of prompt when your shell type is prompt-toolkit:
```python
$XONTRIB_PROMPT_STARSHIP_LEFT_CONFIG = "~/.config/starship_xonsh_left.toml"
$XONTRIB_PROMPT_STARSHIP_RIGHT_CONFIG = "~/.config/starship_xonsh_right.toml"
$XONTRIB_PROMPT_STARSHIP_BOTTOM_CONFIG = "~/.config/starship_xonsh_bottom.toml"
xontrib load prompt_starship
```
In case of [using starship as part of another prompt](https://github.com/anki-code/xontrib-prompt-bar#using-starship-cross-shell-prompt-to-rendering-right-sections) you can add starship prompt to `$PROMPT_FIELDS` without replacing the current prompt:
```python
$XONTRIB_PROMPT_STARSHIP_REPLACE_PROMPT = False
xontrib load prompt_starship
print($PROMPT_FIELDS['starship_left']())
```
### Prompt bar with starship
[See also](https://github.com/anki-code/xontrib-prompt-bar#using-starship-cross-shell-prompt-to-rendering-right-sections):
<img src="https://raw.githubusercontent.com/anki-code/xontrib-prompt-bar/master/static/xontrib-prompt-bar-starship.png" alt="Prompt bar with starship sections.">
### Monochrome prompt
See also [starship-prompt-mono](https://github.com/anki-code/starship-prompt-mono):

## Known issues
* [Prompt toolkit issue: the right prompt at the bottom.](https://github.com/prompt-toolkit/python-prompt-toolkit/issues/1241)
* The using of bottom toolbar is not properly tested and adopted to cute appearance.
## Credits
* The xontrib-prompt-starship can be used as part of [xontrib-prompt-bar](https://github.com/anki-code/xontrib-prompt-bar).
* This package is the part of [ergopack](https://github.com/anki-code/xontrib-ergopack) - the pack of ergonomic xontribs.
* This package was created with [xontrib cookiecutter template](https://github.com/xonsh/xontrib-cookiecutter).
* [Adding support for xonsh inside Starship](https://github.com/starship/starship/pull/2807)
Raw data
{
"_id": null,
"home_page": "https://github.com/anki-code/xontrib-prompt-starship",
"name": "xontrib-prompt-starship",
"maintainer": null,
"docs_url": null,
"requires_python": ">=3.6",
"maintainer_email": null,
"keywords": null,
"author": "anki-code",
"author_email": "no@no.no",
"download_url": "https://files.pythonhosted.org/packages/8e/88/e468c55e45de390decebfb3c465f9e35e2aacbcc2bebf8e417ad33953f83/xontrib_prompt_starship-0.3.7.tar.gz",
"platform": "any",
"description": "<p align=\"center\">\n<a href=\"https://github.com/starship/starship\">Starship</a> cross-shell prompt in xonsh shell.\n<br><br>\n<img src=\"https://repository-images.githubusercontent.com/345190141/5ab8de00-7ed9-11eb-8545-3582ec7e054a\">\n</p>\n\n<p align=\"center\"> \nIf you like the idea click \u2b50 on the repo and <a href=\"https://twitter.com/intent/tweet?text=Nice%20prompt%20for%20the%20xonsh%20shell!&url=https://github.com/anki-code/xontrib-xontrib-prompt-starship\" target=\"_blank\">tweet</a>.\n</p>\n\nAdditional features:\n\n* You can split the prompt to left, right and bottom parts.\n\n## Installation\n\nTo install use pip:\n\n```bash\n# You already have Starship installed. Then:\nxpip install xontrib-prompt-starship\n# or: xpip install -U git+https://github.com/anki-code/xontrib-prompt-starship\n```\n\n## Usage\n\n```bash\nxontrib load prompt_starship\n```\n\n## Recommendation\n\nWe suggest to use `@` character to remember about [you're using xonsh syntax](https://github.com/anki-code/xonsh-cheatsheet/blob/main/README.md#three-most-frequent-things-that-newcomers-overlook) and to potentially [spread the word about xonsh](https://github.com/xonsh/xonsh#the-xonsh-shell-community) if you make a screenshot or show your terminal to friends or collegues:\n```ini\nmkdir -p ~/.config/ && echo @(\"\"\"\n[character]\nsuccess_symbol = \"[@](bold green)\"\nerror_symbol = \"[@](bold red)\"\n\"\"\".strip()) > ~/.config/starship_xonsh.toml\n\n$STARSHIP_CONFIG = '~/.config/starship_xonsh.toml'\nxontrib load prompt_starship\n```\n\n## Configuration\n\nYou can set the different starship configs for left, right and bottom parts of prompt when your shell type is prompt-toolkit:\n\n```python\n$XONTRIB_PROMPT_STARSHIP_LEFT_CONFIG = \"~/.config/starship_xonsh_left.toml\"\n$XONTRIB_PROMPT_STARSHIP_RIGHT_CONFIG = \"~/.config/starship_xonsh_right.toml\"\n$XONTRIB_PROMPT_STARSHIP_BOTTOM_CONFIG = \"~/.config/starship_xonsh_bottom.toml\"\nxontrib load prompt_starship\n```\n\nIn case of [using starship as part of another prompt](https://github.com/anki-code/xontrib-prompt-bar#using-starship-cross-shell-prompt-to-rendering-right-sections) you can add starship prompt to `$PROMPT_FIELDS` without replacing the current prompt:\n```python\n$XONTRIB_PROMPT_STARSHIP_REPLACE_PROMPT = False\nxontrib load prompt_starship\nprint($PROMPT_FIELDS['starship_left']())\n```\n\n### Prompt bar with starship\n\n[See also](https://github.com/anki-code/xontrib-prompt-bar#using-starship-cross-shell-prompt-to-rendering-right-sections):\n\n<img src=\"https://raw.githubusercontent.com/anki-code/xontrib-prompt-bar/master/static/xontrib-prompt-bar-starship.png\" alt=\"Prompt bar with starship sections.\">\n\n\n### Monochrome prompt\n\nSee also [starship-prompt-mono](https://github.com/anki-code/starship-prompt-mono):\n\n\n\n\n## Known issues\n\n* [Prompt toolkit issue: the right prompt at the bottom.](https://github.com/prompt-toolkit/python-prompt-toolkit/issues/1241)\n* The using of bottom toolbar is not properly tested and adopted to cute appearance.\n\n## Credits\n* The xontrib-prompt-starship can be used as part of [xontrib-prompt-bar](https://github.com/anki-code/xontrib-prompt-bar).\n* This package is the part of [ergopack](https://github.com/anki-code/xontrib-ergopack) - the pack of ergonomic xontribs.\n* This package was created with [xontrib cookiecutter template](https://github.com/xonsh/xontrib-cookiecutter).\n* [Adding support for xonsh inside Starship](https://github.com/starship/starship/pull/2807)\n",
"bugtrack_url": null,
"license": "MIT",
"summary": "Starship prompt in xonsh shell.",
"version": "0.3.7",
"project_urls": {
"Code": "https://github.com/anki-code/xontrib-prompt-starship",
"Documentation": "https://github.com/anki-code/xontrib-prompt-starship/blob/master/README.md",
"Homepage": "https://github.com/anki-code/xontrib-prompt-starship",
"Issue tracker": "https://github.com/anki-code/xontrib-prompt-starship/issues"
},
"split_keywords": [],
"urls": [
{
"comment_text": null,
"digests": {
"blake2b_256": "9471968450a151d003bb80ed6fbfb190f22cfac076cbd4442dc58b48c5545644",
"md5": "216150c332cfa04e19e312efcc114840",
"sha256": "12a213fc454c9547c6426d19c4a43982be48500019378267bdab465d0749dccd"
},
"downloads": -1,
"filename": "xontrib_prompt_starship-0.3.7-py3-none-any.whl",
"has_sig": false,
"md5_digest": "216150c332cfa04e19e312efcc114840",
"packagetype": "bdist_wheel",
"python_version": "py3",
"requires_python": ">=3.6",
"size": 4700,
"upload_time": "2025-10-13T13:25:59",
"upload_time_iso_8601": "2025-10-13T13:25:59.529596Z",
"url": "https://files.pythonhosted.org/packages/94/71/968450a151d003bb80ed6fbfb190f22cfac076cbd4442dc58b48c5545644/xontrib_prompt_starship-0.3.7-py3-none-any.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "8e88e468c55e45de390decebfb3c465f9e35e2aacbcc2bebf8e417ad33953f83",
"md5": "1bd3fb57a70fbd104ae65ad0b76eb580",
"sha256": "57f542e3018a055f0502467de489ddca60a3a710ff08146dd63799811ed9df9e"
},
"downloads": -1,
"filename": "xontrib_prompt_starship-0.3.7.tar.gz",
"has_sig": false,
"md5_digest": "1bd3fb57a70fbd104ae65ad0b76eb580",
"packagetype": "sdist",
"python_version": "source",
"requires_python": ">=3.6",
"size": 4496,
"upload_time": "2025-10-13T13:26:00",
"upload_time_iso_8601": "2025-10-13T13:26:00.642686Z",
"url": "https://files.pythonhosted.org/packages/8e/88/e468c55e45de390decebfb3c465f9e35e2aacbcc2bebf8e417ad33953f83/xontrib_prompt_starship-0.3.7.tar.gz",
"yanked": false,
"yanked_reason": null
}
],
"upload_time": "2025-10-13 13:26:00",
"github": true,
"gitlab": false,
"bitbucket": false,
"codeberg": false,
"github_user": "anki-code",
"github_project": "xontrib-prompt-starship",
"travis_ci": false,
"coveralls": false,
"github_actions": true,
"requirements": [
{
"name": "xonsh",
"specs": []
}
],
"lcname": "xontrib-prompt-starship"
}