ohmyfish主题添加执行时间和当前时间

没事倒腾了一下fish,习惯了ohmyzsh默认主题robbyrussell,并且自己添加执行时间和当前时间,所以ohmyfish这边也想一致。

在主题目录下添加文件fish_right_prompt.fish
文件中写入一下代码:

function fish_right_prompt
  set -l S (math $CMD_DURATION/1000)
  set -l M (math $S/60)

  set_color red
  echo "("
  if test $M -gt 1
      echo -n -s $M m
  else if test $S -gt 1
      echo -n -s $S s
  else
      echo -n -s $CMD_DURATION ms
  end
  echo ")"
  set_color normal

  set_color white
  printf '[%s]' (date +%H:%M:%S)
  set_color normal
end

robbyrussell主题的效果
在这里插入图片描述

参考:
https://github.com/grissius/theme-pie
https://github.com/oh-my-fish/theme-scorphish

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值
>