mirror of
https://github.com/zkldi/Tachi.git
synced 2026-09-27 09:28:12 +03:00
* temporary dvctr * start of work * fix: timeouts in windows * fish? * feat: better, working stuff * refactor: rename database-seeds to seeds/ * better * fdsaf * feat: don't let our container get owned by root * fix: better user handling * feat: falling asleep at my desk i yield to you what i have done * feat: autoadminify * docs: denote trickshot * feat: open in browser on launch * better seeds workings... * fix: dont kill shell * docs: mention dev/debs * fix: whoops * fix: make seeds load within the century * feat: rest of the containerisation * feat: new alias * style: fix linter errors * fix: bad call * fix: better justfile
16 lines
934 B
Fish
16 lines
934 B
Fish
function _tide_item_status
|
|
if string match -qv 0 $_tide_pipestatus # If there is a failure anywhere in the pipestatus
|
|
if test "$_tide_pipestatus" = 1 # If simple failure
|
|
contains character $_tide_left_items || tide_status_bg_color=$tide_status_bg_color_failure \
|
|
tide_status_color=$tide_status_color_failure _tide_print_item status $tide_status_icon_failure' ' 1
|
|
else
|
|
fish_status_to_signal $_tide_pipestatus | string replace SIG '' | string join '|' | read -l out
|
|
test $_tide_status = 0 && _tide_print_item status $tide_status_icon' ' $out ||
|
|
tide_status_bg_color=$tide_status_bg_color_failure tide_status_color=$tide_status_color_failure \
|
|
_tide_print_item status $tide_status_icon_failure' ' $out
|
|
end
|
|
else if not contains character $_tide_left_items
|
|
_tide_print_item status $tide_status_icon
|
|
end
|
|
end
|