自定义主题shell提示符.

修改oh-my-zsh主题

主题目录

1
2
cd ~/.oh-my-zsh/themes
vim theme-name

主题提示符

代码解释
%T系统时间(时:分)
%*系统时间(时:分:秒)
%D系统日期(年-月-日)
%n你的用户名
%B - %b开始到结束使用粗体打印
%U - %u开始到结束使用下划线打印
%d你目前的工作目录
%~你目前的工作目录相对于~的相对路径
%M计算机的主机名
%m计算机的主机名(在第一个句号之前截断)
%l你当前的tty
%n登录名

顏色語法

  1. “%{$fg[cyan]%}XXX”
  2. “%{$fg[yellow]%}和%{$reset_color%}”
  3. 上面是一对的中间夹的文字会用 yellow 颜色显示,颜色要用小写。

事例

  • Before
    1
    2
    3
    4
    5
    6
    7
    8
    9
    10
    11
    12
    PROMPT="
    %{$terminfo[bold]$fg[blue]%}#%{$reset_color%} \
    %(#,%{$bg[yellow]%}%{$fg[black]%}%n%{$reset_color%},%{$fg[cyan]%}%n) \
    %{$fg[white]%}@ \
    %{$fg[green]%}%m \
    %{$fg[white]%}in \
    %{$terminfo[bold]$fg[yellow]%}%~%{$reset_color%}\
    ${hg_info}\
    ${git_info}\
    \
    %{$fg[white]%}[%*] $exit_code
    %{$terminfo[bold]$fg[red]%}$ %{$reset_color%}"
  • Affter
    1
    2
    3
    4
    5
    6
    7
    8
    9
    10
    11
    PROMPT="%{$terminfo[bold]$fg[blue]%}#%{$reset_color%} \
    %(#,%{$bg[yellow]%}%{$fg[black]%}%n%{$reset_color%},%{$fg[cyan]%}% Vitan) \
    %{$fg[white]%}@ \
    %{$fg[green]%}% OnePlus \
    %{$fg[white]%}in \
    %{$terminfo[bold]$fg[yellow]%}%~%{$reset_color%}\
    ${hg_info}\
    ${git_info}\
    \
    %{$fg[white]%} [%*] $exit_code
    %{$terminfo[bold]$fg[red]%}➜ %{$reset_color%}"

本站由 VITAN 使用 Stellar 主题创建。
本博客所有文章除特别声明外,均采用 CC BY-NC-SA 4.0 许可协议,转载请注明出处。