2014-10-02 21:02:53 +00:00
|
|
|
# vim: set noet:
|
|
|
|
#
|
|
|
|
# Set the default prompt command.
|
2006-02-12 13:14:21 +00:00
|
|
|
|
2007-01-16 01:29:18 +00:00
|
|
|
function fish_prompt --description "Write out the prompt"
|
2014-10-02 21:02:53 +00:00
|
|
|
# Just calculate this once, to save a few cycles when displaying the prompt
|
2006-02-12 13:14:21 +00:00
|
|
|
if not set -q __fish_prompt_hostname
|
2015-10-15 23:01:12 +00:00
|
|
|
set -g __fish_prompt_hostname (hostname|cut -d . -f 1)
|
2006-02-12 13:14:21 +00:00
|
|
|
end
|
2006-11-18 21:21:47 +00:00
|
|
|
|
2014-10-02 21:02:53 +00:00
|
|
|
set -l color_cwd
|
|
|
|
set -l suffix
|
2007-08-18 23:03:02 +00:00
|
|
|
switch $USER
|
2014-10-02 21:02:53 +00:00
|
|
|
case root toor
|
|
|
|
if set -q fish_color_cwd_root
|
|
|
|
set color_cwd $fish_color_cwd_root
|
|
|
|
else
|
|
|
|
set color_cwd $fish_color_cwd
|
2007-08-18 23:03:02 +00:00
|
|
|
end
|
2014-10-02 21:02:53 +00:00
|
|
|
set suffix '#'
|
|
|
|
case '*'
|
|
|
|
set color_cwd $fish_color_cwd
|
|
|
|
set suffix '>'
|
2007-08-18 23:03:02 +00:00
|
|
|
end
|
2006-02-12 13:14:21 +00:00
|
|
|
|
2014-10-02 21:02:53 +00:00
|
|
|
echo -n -s "$USER" @ "$__fish_prompt_hostname" ' ' (set_color $color_cwd) (prompt_pwd) (set_color normal) "$suffix "
|
|
|
|
end
|