├── .github └── ISSUE_TEMPLATE │ ├── bug_report.md │ └── feature_request.md ├── .gitignore ├── .gitmodules ├── AUTHORS.md ├── LICENSE ├── README.md ├── config_templates ├── fancy-bash-prompt.config ├── fancy-bash-prompt.config.examples │ ├── blue.fancy-bash-prompt.config │ ├── gray.fancy-bash-prompt.config │ ├── green.fancy-bash-prompt.config │ ├── orange.fancy-bash-prompt.config │ ├── red.fancy-bash-prompt.config │ └── yellow.fancy-bash-prompt.config ├── status.config └── status.config.examples │ ├── distros │ └── archlinux.status.config │ ├── organizations │ ├── MAPIR-cyan.status.config │ ├── MAPIR-gray.status (copy).config │ ├── MAPIR-green.status (copy).config │ ├── MAPIR-orange.status (copy).config │ └── uma.scbi.status.config │ ├── root.status.config │ └── users │ └── README.md ├── doc ├── changelog.md ├── coding_style.md ├── screenshot.png ├── status_config_preview.png ├── synth-shell-alias.jpg ├── synth-shell-misc.jpg └── synth-shell.jpg ├── setup.sh └── synth-shell ├── alias.sh ├── better-cd.sh ├── better-history.sh └── better-ls.sh /.github/ISSUE_TEMPLATE/bug_report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andresgongora/synth-shell/HEAD/.github/ISSUE_TEMPLATE/bug_report.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature_request.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andresgongora/synth-shell/HEAD/.github/ISSUE_TEMPLATE/feature_request.md -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andresgongora/synth-shell/HEAD/.gitignore -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andresgongora/synth-shell/HEAD/.gitmodules -------------------------------------------------------------------------------- /AUTHORS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andresgongora/synth-shell/HEAD/AUTHORS.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andresgongora/synth-shell/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andresgongora/synth-shell/HEAD/README.md -------------------------------------------------------------------------------- /config_templates/fancy-bash-prompt.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andresgongora/synth-shell/HEAD/config_templates/fancy-bash-prompt.config -------------------------------------------------------------------------------- /config_templates/fancy-bash-prompt.config.examples/blue.fancy-bash-prompt.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andresgongora/synth-shell/HEAD/config_templates/fancy-bash-prompt.config.examples/blue.fancy-bash-prompt.config -------------------------------------------------------------------------------- /config_templates/fancy-bash-prompt.config.examples/gray.fancy-bash-prompt.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andresgongora/synth-shell/HEAD/config_templates/fancy-bash-prompt.config.examples/gray.fancy-bash-prompt.config -------------------------------------------------------------------------------- /config_templates/fancy-bash-prompt.config.examples/green.fancy-bash-prompt.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andresgongora/synth-shell/HEAD/config_templates/fancy-bash-prompt.config.examples/green.fancy-bash-prompt.config -------------------------------------------------------------------------------- /config_templates/fancy-bash-prompt.config.examples/orange.fancy-bash-prompt.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andresgongora/synth-shell/HEAD/config_templates/fancy-bash-prompt.config.examples/orange.fancy-bash-prompt.config -------------------------------------------------------------------------------- /config_templates/fancy-bash-prompt.config.examples/red.fancy-bash-prompt.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andresgongora/synth-shell/HEAD/config_templates/fancy-bash-prompt.config.examples/red.fancy-bash-prompt.config -------------------------------------------------------------------------------- /config_templates/fancy-bash-prompt.config.examples/yellow.fancy-bash-prompt.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andresgongora/synth-shell/HEAD/config_templates/fancy-bash-prompt.config.examples/yellow.fancy-bash-prompt.config -------------------------------------------------------------------------------- /config_templates/status.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andresgongora/synth-shell/HEAD/config_templates/status.config -------------------------------------------------------------------------------- /config_templates/status.config.examples/distros/archlinux.status.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andresgongora/synth-shell/HEAD/config_templates/status.config.examples/distros/archlinux.status.config -------------------------------------------------------------------------------- /config_templates/status.config.examples/organizations/MAPIR-cyan.status.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andresgongora/synth-shell/HEAD/config_templates/status.config.examples/organizations/MAPIR-cyan.status.config -------------------------------------------------------------------------------- /config_templates/status.config.examples/organizations/MAPIR-gray.status (copy).config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andresgongora/synth-shell/HEAD/config_templates/status.config.examples/organizations/MAPIR-gray.status (copy).config -------------------------------------------------------------------------------- /config_templates/status.config.examples/organizations/MAPIR-green.status (copy).config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andresgongora/synth-shell/HEAD/config_templates/status.config.examples/organizations/MAPIR-green.status (copy).config -------------------------------------------------------------------------------- /config_templates/status.config.examples/organizations/MAPIR-orange.status (copy).config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andresgongora/synth-shell/HEAD/config_templates/status.config.examples/organizations/MAPIR-orange.status (copy).config -------------------------------------------------------------------------------- /config_templates/status.config.examples/organizations/uma.scbi.status.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andresgongora/synth-shell/HEAD/config_templates/status.config.examples/organizations/uma.scbi.status.config -------------------------------------------------------------------------------- /config_templates/status.config.examples/root.status.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andresgongora/synth-shell/HEAD/config_templates/status.config.examples/root.status.config -------------------------------------------------------------------------------- /config_templates/status.config.examples/users/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andresgongora/synth-shell/HEAD/config_templates/status.config.examples/users/README.md -------------------------------------------------------------------------------- /doc/changelog.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andresgongora/synth-shell/HEAD/doc/changelog.md -------------------------------------------------------------------------------- /doc/coding_style.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andresgongora/synth-shell/HEAD/doc/coding_style.md -------------------------------------------------------------------------------- /doc/screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andresgongora/synth-shell/HEAD/doc/screenshot.png -------------------------------------------------------------------------------- /doc/status_config_preview.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andresgongora/synth-shell/HEAD/doc/status_config_preview.png -------------------------------------------------------------------------------- /doc/synth-shell-alias.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andresgongora/synth-shell/HEAD/doc/synth-shell-alias.jpg -------------------------------------------------------------------------------- /doc/synth-shell-misc.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andresgongora/synth-shell/HEAD/doc/synth-shell-misc.jpg -------------------------------------------------------------------------------- /doc/synth-shell.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andresgongora/synth-shell/HEAD/doc/synth-shell.jpg -------------------------------------------------------------------------------- /setup.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andresgongora/synth-shell/HEAD/setup.sh -------------------------------------------------------------------------------- /synth-shell/alias.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andresgongora/synth-shell/HEAD/synth-shell/alias.sh -------------------------------------------------------------------------------- /synth-shell/better-cd.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andresgongora/synth-shell/HEAD/synth-shell/better-cd.sh -------------------------------------------------------------------------------- /synth-shell/better-history.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andresgongora/synth-shell/HEAD/synth-shell/better-history.sh -------------------------------------------------------------------------------- /synth-shell/better-ls.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andresgongora/synth-shell/HEAD/synth-shell/better-ls.sh --------------------------------------------------------------------------------