Created
March 17, 2021 13:39
-
-
Save braindotai/6a1c6f8f3207d9752d222358b5588113 to your computer and use it in GitHub Desktop.
bash ps1 string
This file contains 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
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