kujiu (@uberwald)
8ca6287fb1
-> Passwords in KeePassXC (access by keyring) -> Neomutt + Aerc (mail) -> vdirsyncer + khal + khard (calendar and contacts) zsh -> fish -> poezio (XMPP) -> newsboat (RSS with FreshRSS) -> toot (Mastodon client) vim -> neovim (with lunarvim) -> nvimpager (pager based on neovim) -> konsole With Nightfox theme.
8 lines
452 B
Fish
8 lines
452 B
Fish
function _tide_item_gcloud
|
|
set -q CLOUDSDK_CONFIG || set -l CLOUDSDK_CONFIG ~/.config/gcloud
|
|
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
|
|
end
|