您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符
此仓库已存档。您可以查看文件和克隆,但不能推送或创建工单/合并请求。

25 行
523B

  1. function fish_title
  2. # Just calculate this once, to save a few cycles when displaying the prompt
  3. if not set -q __fish_prompt_hostname
  4. set -g __fish_prompt_hostname (hostname|cut -d . -f 1)
  5. end
  6. set -l prefix
  7. set -l suffix
  8. switch $USER
  9. case root toor
  10. set prefix "$__fish_prompt_hostname:"
  11. set suffix '#'
  12. case '*'
  13. set prefix "$USER@$__fish_prompt_hostname:"
  14. set suffix '>'
  15. end
  16. if [ "$XDG_SESSION_TYPE" != "x11" ]
  17. echo -n -s "$prefix"
  18. end
  19. echo -n -s (prompt_pwd) " $suffix $_"
  20. end