mirror of
https://github.com/zkldi/Tachi.git
synced 2026-09-26 08:57:58 +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
18 lines
609 B
Fish
18 lines
609 B
Fish
function _tide_cache_variables
|
|
# Same-color-separator color
|
|
set_color $tide_prompt_color_separator_same_color | read -gx _tide_color_separator_same_color
|
|
|
|
# git
|
|
contains git $_tide_left_items $_tide_right_items && set_color $tide_git_color_branch | read -gx _tide_location_color
|
|
|
|
# private_mode
|
|
if contains private_mode $_tide_left_items $_tide_right_items && test -n "$fish_private_mode"
|
|
set -gx _tide_private_mode
|
|
else
|
|
set -e _tide_private_mode
|
|
end
|
|
|
|
# item padding
|
|
test "$tide_prompt_pad_items" = true && set -gx _tide_pad ' ' || set -e _tide_pad
|
|
end
|