Вы не можете выбрать более 25 тем Темы должны начинаться с буквы или цифры, могут содержать дефисы(-) и должны содержать не более 35 символов.
Это архивный репозиторий. Вы можете его клонировать или просматривать файлы, но не вносить изменения или открывать задачи/запросы на слияние.

22 строки
495B

  1. # target format: user@host:~$
  2. function fish_prompt --description 'prompt'
  3. set -l color_cwd
  4. set -l suffix
  5. switch $USER
  6. case root toor
  7. if set -q fish_color_cwd_root
  8. set color_cwd $fish_color_cwd_root
  9. else
  10. set color_cwd $fish_color_cwd
  11. end
  12. set suffix '#'
  13. case '*'
  14. set color_cwd $fish_color_cwd
  15. set suffix '>'
  16. end
  17. set -g fish_prompt_pwd_dir_length 0
  18. echo -n -s "$USER" @ "$__fish_prompt_hostname" : (set_color $color_cwd) (prompt_pwd) (set_color normal) " $suffix "
  19. end