mirror of
https://github.com/IlanCosman/tide.git
synced 2024-11-26 09:42:51 +03:00
28 lines
1.2 KiB
Fish
28 lines
1.2 KiB
Fish
function _tide_item_status
|
|
if string match --quiet --invert 0 $_tide_last_pipestatus # If there is a failure anywhere in the pipestatus
|
|
if test "$_tide_last_pipestatus" = 1 # If simple failure
|
|
if not contains prompt_char $tide_left_prompt_items
|
|
set -g tide_status_bg_color $tide_status_failure_bg_color
|
|
set_color $tide_status_failure_color
|
|
printf '%s' $tide_status_failure_icon' ' 1
|
|
end
|
|
else
|
|
if test $_tide_last_status = 0
|
|
set -g tide_status_bg_color $tide_status_success_bg_color
|
|
set_color $tide_status_success_color
|
|
printf '%s' $tide_status_success_icon' '
|
|
else
|
|
set -g tide_status_bg_color $tide_status_failure_bg_color
|
|
set_color $tide_status_failure_color
|
|
printf '%s' $tide_status_failure_icon' '
|
|
end
|
|
|
|
fish_status_to_signal $_tide_last_pipestatus | string replace SIG '' | string join '|'
|
|
end
|
|
else if not contains prompt_char $tide_left_prompt_items
|
|
set -g tide_status_bg_color $tide_status_success_bg_color
|
|
set_color $tide_status_success_color
|
|
printf '%s' $tide_status_success_icon
|
|
end
|
|
end
|