web-dev-qa-db-fra.com

Ajouter un horodatage au thème oh-my-zsh robbyrussell

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?

24
yossi.ittach

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%}'
35
meuh

Si vous souhaitez ajouter date/heure à droite, définissez RPROMPT.

 local ret_status = "% (?:% {$ fg_bold [vert]%}:% {$ fg_bold [rouge]%})" 
 Invite = '$ {ret_status}% { $ fg [cyan]%}% c% {$ reset_color%} $ (git_Prompt_info) '
 RPROMPT = "[% D {% y /% m /% f} |% @]" 

enter image description here

17
Héctor Villarroel

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:

enter image description here

7
iamaziz