1
0
Fork 0
mirror of https://github.com/ohmyzsh/ohmyzsh.git synced 2024-09-21 07:20:09 +00:00

feat(mlh): add separate prompt symbol for root user (#11451)

This commit is contained in:
Bartek Pacia 2023-01-23 19:40:42 +01:00 committed by GitHub
parent a1c54e03f9
commit 7de55844b2
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -47,6 +47,10 @@ if [ -z "$MLH_SHELL_SYMBOL" ]; then
MLH_SHELL_SYMBOL="$ "
fi
if [ -z "$MLH_SHELL_SYMBOL_ROOT" ]; then
MLH_SHELL_SYMBOL_ROOT="# "
fi
# colors
USER_COLOR="%F{001}"
DEVICE_COLOR="%F{033}"
@ -83,7 +87,11 @@ exit_code() {
}
prompt_end() {
printf "\n$MLH_SHELL_SYMBOL"
if [ "$UID" -eq 0 ]; then
printf "\n$MLH_SHELL_SYMBOL_ROOT"
else
printf "\n$MLH_SHELL_SYMBOL"
fi
}
# Set git_prompt_info text