From 34726144a9877267f318043c1f8e59c237a6548b Mon Sep 17 00:00:00 2001 From: Nathan Lasseter Date: Sat, 7 May 2011 14:19:34 +0100 Subject: fixed new prompt --- functions/fish_prompt.fish | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/functions/fish_prompt.fish b/functions/fish_prompt.fish index 9cc8ef7..6c1731f 100644 --- a/functions/fish_prompt.fish +++ b/functions/fish_prompt.fish @@ -1,5 +1,5 @@ function fish_prompt - printf '[%s@%s] ' (echo $USERNAME) (cat /etc/hostname) + printf '[%s@%s] ' (echo $USER) (cat /etc/hostname) if test -d .git printf '%s%s %s(%s)' (set_color red) (pwd) (set_color blue) (git branch | grep "*" | awk -F" " '{print $2}') else -- cgit v1.2.1