25개 이상의 토픽을 선택하실 수 없습니다.
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
This repo is archived. You can view files and clone it, but cannot push or open issues/pull-requests.
|
- 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
|