tide/functions/_tide_item_direnv.fish

8 lines
302 B
Fish
Raw Normal View History

2023-04-05 04:30:19 +03:00
function _tide_item_direnv
set -q DIRENV_DIR || return
2023-12-24 22:31:30 +03:00
direnv status | string match -q 'Found RC allowed false' &&
set -lx tide_direnv_color $tide_direnv_color_denied &&
set -lx tide_direnv_bg_color $tide_direnv_bg_color_denied
2023-04-05 04:30:19 +03:00
_tide_print_item direnv $tide_direnv_icon
end