Created
October 11, 2024 05:40
-
-
Save KazKoboDev/e550d3c8f3dc8092f5edecac881ed4d6 to your computer and use it in GitHub Desktop.
This is a prompt theme I discovered in the official Docker Dev Environment container images. I liked it so much I wanted to include it in my own images.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Codespaces bash prompt theme | |
__bash_prompt() { | |
local userpart='`export XIT=$? \ | |
&& [ ! -z "${GITHUB_USER}" ] && echo -n "\[\033[0;32m\]@${GITHUB_USER} " || echo -n "\[\033[0;32m\]\u " \ | |
&& [ "$XIT" -ne "0" ] && echo -n "\[\033[1;31m\]➜" || echo -n "\[\033[0m\]➜"`' | |
local gitbranch='`\ | |
if [ "$(git config --get codespaces-theme.hide-status 2>/dev/null)" != 1 ]; then \ | |
export BRANCH=$(git symbolic-ref --short HEAD 2>/dev/null || git rev-parse --short HEAD 2>/dev/null); \ | |
if [ "${BRANCH}" != "" ]; then \ | |
echo -n "\[\033[0;36m\](\[\033[1;31m\]${BRANCH}" \ | |
&& if git ls-files --error-unmatch -m --directory --no-empty-directory -o --exclude-standard ":/*" > /dev/null 2>&1; then \ | |
echo -n " \[\033[1;33m\]✗"; \ | |
fi \ | |
&& echo -n "\[\033[0;36m\]) "; \ | |
fi; \ | |
fi`' | |
local lightblue='\[\033[1;34m\]' | |
local removecolor='\[\033[0m\]' | |
PS1="${userpart} ${lightblue}\w ${gitbranch}${removecolor}\$ " | |
unset -f __bash_prompt | |
} | |
__bash_prompt | |
export PROMPT_DIRTRIM=4 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment