25'ten fazla konu seçemezsiniz Konular bir harf veya rakamla başlamalı, kısa çizgiler ('-') içerebilir ve en fazla 35 karakter uzunluğunda olabilir.
Bu depo arşivlendi. Dosyaları görüntüleyebilir ve klonlayabilirsiniz ama işlem gönderemez ve konu/değişiklik isteği açamazsınız.

25 satır
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