{"id":18654024,"url":"https://github.com/thebashpotato/bortus","last_synced_at":"2026-02-27T13:05:08.249Z","repository":{"id":156401697,"uuid":"631679070","full_name":"thebashpotato/bortus","owner":"thebashpotato","description":"A zsh shell micro-framework. Created to be simple and hackable, with a focus on being as close to the fish shell as possible.","archived":false,"fork":false,"pushed_at":"2025-05-01T01:56:11.000Z","size":719,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"main","last_synced_at":"2025-08-18T21:35:21.446Z","etag":null,"topics":["shell-framework","shell-scripting","zsh"],"latest_commit_sha":null,"homepage":"","language":"Shell","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/thebashpotato.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null,"zenodo":null}},"created_at":"2023-04-23T19:19:36.000Z","updated_at":"2025-05-01T01:56:14.000Z","dependencies_parsed_at":null,"dependency_job_id":"209a8ee5-1241-4de6-88ad-f999efa96be7","html_url":"https://github.com/thebashpotato/bortus","commit_stats":null,"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/thebashpotato/bortus","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/thebashpotato%2Fbortus","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/thebashpotato%2Fbortus/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/thebashpotato%2Fbortus/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/thebashpotato%2Fbortus/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/thebashpotato","download_url":"https://codeload.github.com/thebashpotato/bortus/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/thebashpotato%2Fbortus/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":29896314,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-02-27T12:09:13.686Z","status":"ssl_error","status_checked_at":"2026-02-27T12:09:13.282Z","response_time":57,"last_error":"SSL_read: unexpected eof while reading","robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":false,"can_crawl_api":true,"host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["shell-framework","shell-scripting","zsh"],"created_at":"2024-11-07T07:13:47.804Z","updated_at":"2026-02-27T13:05:08.232Z","avatar_url":"https://github.com/thebashpotato.png","language":"Shell","funding_links":[],"categories":[],"sub_categories":[],"readme":"# bortus\n\n[![standard-readme compliant](https://img.shields.io/badge/standard--readme-OK-green.svg?style=flat-square)](https://github.com/RichardLitt/standard-readme)\n\nA zsh shell micro-framework. Created to be simple and hackable,\nwith a focus on being as close to the fish shell as possible.\n\n## Table of Contents\n\n- [Install](#install)\n- [Hacking](#hacking)\n- [Maintainers](#maintainers)\n- [Contributing](#contributing)\n- [License](#license)\n\n## Install\n\n1. Symlink method\n\n- Clone and update submodules\n\n```bash\n# ssh\ngit clone --recursive git@github.com:thebashpotato/bortus.git\n\n# https\ngit clone --recursive https://github.com/thebashpotato/bortus.git\n\n\n# update submodules\ncd bortus \u0026\u0026 git submodule update --init --recursive\n```\n\n- Create soft links\n\n```bash\nln -s $(pwd)/bortus ~/.config/bortus\n\n# Add the following to your .zshrc after you back up your old one.\nmv -v ~/.zshrc ~/.zshrc.bak \u0026\u0026 touch ~/.zshrc\necho \"[[ -f ~/.config/bortus/load.zsh ]] \u0026\u0026 source ~/.config/bortus/load.zsh\" \u003e\u003e ~/.zshrc\n```\n\n2. install.sh (TODO)\n\n- TODO\n\n## Hacking\n\nConfiguring `bortus` is simple and self explanatory. [This file is used for variables](./bortus/bortus_config.zsh)\n\n```bash\n#\n# XXX: Sets up global bortus env variables only\n#\n\n# NOTE: Tooling variables\n\n# BORTUS_PROMPT: Accepted values are (default, starship).\n# Invalid values will be ignored and the default shell will be loaded\nBORTUS_PROMPT=\"starship\"\n\n# BORTUS_REPORTING_TOOL: Accepted values are (neofetch, screenfetch, pfetch, etc)\n# Basically any terminal fetch tool will be used by name if it is found on the system.\n# If you don't want to load a reporting tool then leave the variable empty\nBORTUS_REPORTING_TOOL=\"\"\n\n# NOTE: Path variables\n\nBORTUS_PLUGIN_DIR=\"$BORTUS_HOME_DIR/plugins\"\nBORTUS_PROMPT_DIR=\"$BORTUS_HOME_DIR/prompts\"\n```\n\n## Maintainers\n\n[@thebashpotato](https://github.com/thebashpotato)\n\n## Contributing\n\nPRs accepted.\n\nSmall note: If editing the README, please conform to the [standard-readme](https://github.com/RichardLitt/standard-readme) specification.\n\n## License\n\nMIT © 2023 Matt Williams\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fthebashpotato%2Fbortus","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fthebashpotato%2Fbortus","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fthebashpotato%2Fbortus/lists"}