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.
|
- function fish_title
- # Just calculate this once, to save a few cycles when displaying the prompt
- if not set -q __fish_prompt_hostname
- set -g __fish_prompt_hostname (hostname|cut -d . -f 1)
- end
-
- set -l prefix
- set -l suffix
-
- switch $USER
- case root toor
- set prefix "$__fish_prompt_hostname:"
- set suffix '#'
- case '*'
- set prefix "$USER@$__fish_prompt_hostname:"
- set suffix '>'
- end
-
- if [ "$XDG_SESSION_TYPE" != "x11" ]
- echo -n -s "$prefix"
- end
-
- echo -n -s (prompt_pwd) " $suffix $_"
- end
|