2023-10-08 22:26:07 -05:00
|
|
|
function _tide_item_gcloud
|
|
|
|
set -q CLOUDSDK_CONFIG || set -l CLOUDSDK_CONFIG ~/.config/gcloud
|
2024-01-03 17:58:34 -06:00
|
|
|
path is $CLOUDSDK_CONFIG/active_config &&
|
|
|
|
read -l config <$CLOUDSDK_CONFIG/active_config &&
|
|
|
|
path is $CLOUDSDK_CONFIG/configurations/config_$config &&
|
|
|
|
string match -qr '^\s*project\s*=\s*(?<project>.*)' <$CLOUDSDK_CONFIG/configurations/config_$config &&
|
|
|
|
_tide_print_item gcloud $tide_gcloud_icon' ' $project
|
2023-10-08 22:26:07 -05:00
|
|
|
end
|