Last active
June 23, 2022 19:13
-
-
Save scriptingosx/9b27fb22cf3c308fd435addf64f26028 to your computer and use it in GitHub Desktop.
Sample code for dynamic bash prompt that shows exit codes.
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
# PROMPT | |
# default macOS prompt is: \h:\W \u\$ | |
# assemble the prompt string PS1 | |
# inspired from: https://stackoverflow.com/a/16715681 | |
function __build_prompt { | |
local EXIT="$?" # store current exit code | |
# define some colors | |
local RESET='\[\e[0m\]' | |
local RED='\[\e[0;31m\]' | |
local GREEN='\[\e[0;32m\]' | |
local BOLD_GRAY='\[\e[1;30m\]' | |
# longer list of codes here: https://unix.stackexchange.com/a/124408 | |
# start with an empty PS1 | |
PS1="" | |
if [[ $EXIT -eq 0 ]]; then | |
PS1+="${GREEN}√${RESET} " # Add green for success | |
else | |
PS1+="${RED}?️️️${EXIT}${RESET} " # Add red if exit code non 0 | |
fi | |
# this is the default prompt for | |
PS1+="${BOLD_GRAY}\W ${RESET}\$ " | |
} | |
# set the prompt command | |
# include previous values to maintain Apple Terminal support (window title path and sessions) | |
# this is explained in /etc/bashrc_Apple_Terminal | |
PROMPT_COMMAND="__build_prompt${PROMPT_COMMAND:+; $PROMPT_COMMAND}" |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment