Skip to content

Instantly share code, notes, and snippets.

@d-faure
Last active February 19, 2024 15:54
Show Gist options
  • Save d-faure/41f48c0e0aa89ae9d3802ffda74c9f94 to your computer and use it in GitHub Desktop.
Save d-faure/41f48c0e0aa89ae9d3802ffda74c9f94 to your computer and use it in GitHub Desktop.
Bash prompt with screen info
# fancy (magenta + green + blue)
PS1='${STY+\[\e[1;35m\](${STY#[0-9]*.})\[\e[0m\] }\[\e[1;32m\]\u@\h\[\e[0m\]:\[\e[1;34m\]\w\[\e[0m\] \$ '
# fancy (magenta + red + blue)
PS1='${STY+\[\e[1;35m\](${STY#[0-9]*.})\[\e[0m\] }\[\e[1;31m\]\u@\h\[\e[0m\]:\[\e[1;34m\]\w\[\e[0m\] \$ '
# regular
PS1='${STY+(${STY#[0-9]*.}) }\u@\h:\w \$ '
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment