diff options
Diffstat (limited to '11_Prompts.zsh')
-rw-r--r-- | 11_Prompts.zsh | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/11_Prompts.zsh b/11_Prompts.zsh index aec9f66..61a807c 100644 --- a/11_Prompts.zsh +++ b/11_Prompts.zsh @@ -24,9 +24,9 @@ WHITE=37 # - PS1_USER pour la couleur du prompt USER local # - PS1_USER_SSH pour la couleur du prompt USER distant -PS1_ROOT=$RED -PS1_USER=$BLUE -PS1_USER_SSH=$MAGENTA +PS1_ROOT=${PS1_ROOT:-RED} +PS1_USER=${PS1_USER:-BLUE} +PS1_USER_SSH=${PS1_USER_SSH:-MAGENTA} if ( [ "$SSH_TTY" != "" ] ) then |