Je veux ajouter un horodatage à mon invite de commande dans oh-my-zsh. Ceci est le thème actuel Invite ( robbyrussell ):
local ret_status="%(?:%{$fg_bold[green]%}➜ :%{$fg_bold[red]%}➜ %s)"
Prompt='${ret_status}%{$fg_bold[green]%}%p %{$fg[cyan]%}%c %{$fg_bold[blue]%}$(git_Prompt_info)%{$fg_bold[blue]%} % %{$reset_color%}'
ZSH_THEME_GIT_Prompt_PREFIX="git:(%{$fg[red]%}"
ZSH_THEME_GIT_Prompt_SUFFIX="%{$reset_color%}"
ZSH_THEME_GIT_Prompt_DIRTY="%{$fg[blue]%}) %{$fg[yellow]%}✗%{$reset_color%}"
ZSH_THEME_GIT_Prompt_CLEAN="%{$fg[blue]%})"
Toute idée de comment peut ajouter l'horodatage?
Selon la page de manuel zshmisc, il existe plusieurs codes %
pour la date et l'heure, par exemple:
%D The date in yy-mm-dd format.
%T Current time of day, in 24-hour format.
%t %@ Current time of day, in 12-hour, am/pm format.
%* Current time of day in 24-hour format, with seconds.
%w The date in day-dd format.
%W The date in mm/dd/yy format.
%D{strftime-format}
Le dernier permet les codes listés dans la page de manuel strftime (3) . Editez votre fichier ~/.zsh et ajoutez à la fin une nouvelle valeur d'invite, par exemple:
Prompt='${ret_status}%{$fg_bold[green]%}%p %{$fg[cyan]%}%c %{$fg_bold[blue]%}$(git_Prompt_info)%{$fg_bold[blue]%} %D %T % %{$reset_color%}'
J'ai ajouté ce %D{%m/%f/%y}|%D{%L:%M:%S}
au thème principal pour afficher la date et l'heure sous la forme mm/dd/yy | hh:mm:ss
.
Alors voici la commande complète que j'utilise:
Prompt='%D{%m/%f/%y}|%D{%L:%M:%S} ${ret_status}%{$fg_bold[green]%}%p %{$fg[cyan]%}%c %{$fg_bold[blue]%}$(git_Prompt_info)%{$fg_bold[blue]%} % %{$reset_color%}${NEWLINE}$ '
Qui donne: