mirror of
https://github.com/ohmyzsh/ohmyzsh.git
synced 2025-12-26 02:12:33 +01:00
7 lines
374 B
Bash
7 lines
374 B
Bash
if [ "`id -u`" -eq 0 ]; then
|
|
PROMPT="%{$fg_bold[cyan]%}%T%{$fg_bold[green]%} %{$fg_bold[red]%}%n%{$fg[yellow]%}@%{$fg_bold[white]%}%m %{$fg_bold[green]%}%~
|
|
%{$fg_bold[yellow]%}%% %{$reset_color%}"
|
|
else
|
|
PROMPT="%{$fg_bold[cyan]%}%T%{$fg_bold[green]%} %{$fg_bold[blue]%}%n%{$fg[yellow]%}@%{$fg_bold[white]%}%m %{$fg_bold[green]%}%~
|
|
%{$fg_bold[yellow]%}%% %{$reset_color%}"
|
|
fi
|