aboutsummaryrefslogtreecommitdiff
path: root/fish
diff options
context:
space:
mode:
authorAdrian Kummerlaender2015-05-27 15:12:48 +0200
committerAdrian Kummerlaender2015-05-27 15:12:48 +0200
commit7554ce91fcf771041326430c0a224b9e570424a0 (patch)
tree343221009c4fbd17f761c8245414874b1ee1a9ba /fish
parentf733845de850997a1b28ecb011c8374762abecf1 (diff)
downloaddotfiles-7554ce91fcf771041326430c0a224b9e570424a0.tar
dotfiles-7554ce91fcf771041326430c0a224b9e570424a0.tar.gz
dotfiles-7554ce91fcf771041326430c0a224b9e570424a0.tar.bz2
dotfiles-7554ce91fcf771041326430c0a224b9e570424a0.tar.lz
dotfiles-7554ce91fcf771041326430c0a224b9e570424a0.tar.xz
dotfiles-7554ce91fcf771041326430c0a224b9e570424a0.tar.zst
dotfiles-7554ce91fcf771041326430c0a224b9e570424a0.zip
Added exit status signaling to custom fish prompt
Diffstat (limited to 'fish')
-rw-r--r--fish/.config/fish/functions/fish_prompt.fish12
1 files changed, 11 insertions, 1 deletions
diff --git a/fish/.config/fish/functions/fish_prompt.fish b/fish/.config/fish/functions/fish_prompt.fish
index b21d479..bcf8ef7 100644
--- a/fish/.config/fish/functions/fish_prompt.fish
+++ b/fish/.config/fish/functions/fish_prompt.fish
@@ -1,4 +1,6 @@
function fish_prompt
+ set last_status $status
+
if not set -q __fish_prompt_normal
set -g __fish_prompt_normal (set_color normal)
end
@@ -19,5 +21,13 @@ function fish_prompt
end
end
- echo -n -s 'λ ' "$__fish_prompt_cwd" (prompt_pwd) "$__fish_prompt_normal" ' ▸ '
+ echo -n -s 'λ ' "$__fish_prompt_cwd" (prompt_pwd) "$__fish_prompt_normal"
+
+ if test $last_status -gt 0
+ set_color $fish_color_cwd_root
+ echo -n -s ' ▸ '
+ set_color normal
+ else
+ echo -n -s ' ▸ '
+ end
end