Skip to content

Instantly share code, notes, and snippets.

@braindotai
Created March 17, 2021 13:39
Show Gist options
  • Save braindotai/6a1c6f8f3207d9752d222358b5588113 to your computer and use it in GitHub Desktop.
Save braindotai/6a1c6f8f3207d9752d222358b5588113 to your computer and use it in GitHub Desktop.
bash ps1 string
PS1='\[\e[107;30m\]' # change to bold white
PS1+=' \u' # user
# PS1+='\[\e[0;92m\]' # change to bold green
# PS1+='@\h' # device
PS1+='\[\e[1;37m\]' # change to white
PS1+=' ' # user
PS1+='\[\e[97;104m\]' # change to bold blue
# PS1='\[\e[1;34m\]' # change to bold blue
PS1+=' ~/\W ' # current working directory
PS1+='\[\e[0;37m\]' # change color
if test -z "$WINELOADERNOEXEC"
then
GIT_EXEC_PATH="$(git --exec-path 2>/dev/null)"
COMPLETION_PATH="${GIT_EXEC_PATH%/libexec/git-core}"
COMPLETION_PATH="${COMPLETION_PATH%/lib/git-core}"
COMPLETION_PATH="$COMPLETION_PATH/share/git/completion"
if test -f "$COMPLETION_PATH/git-prompt.sh"
then
. "$COMPLETION_PATH/git-completion.bash"
. "$COMPLETION_PATH/git-prompt.sh"
PS1="$PS1"'\[\e[0;36m\]' # change color to cyan
PS1="$PS1"'`__git_ps1`'
# πŸŒ€πŸ”₯πŸ‹πŸ³πŸ¬πŸŽ¨πŸŽ­πŸ•
fi
fi
PS1+='\[\e[0;37m\] # '
MSYS2_PS1="$PS1" # for detection by MSYS2 SDK's bash.basrc
# Evaluate all user-specific Bash completion scripts (if any)
if test -z "$WINELOADERNOEXEC"
then
for c in "$HOME"/bash_completion.d/*.bash
do
# Handle absence of any scripts (or the folder) gracefully
test ! -f "$c" ||
. "$c"
done
fi
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment