Compare commits
3 Commits
2166a0969a
...
47144fb86a
| Author | SHA1 | Date |
|---|---|---|
|
|
47144fb86a | |
|
|
7ff836131a | |
|
|
675c6fb06e |
|
|
@ -793,6 +793,8 @@ If you are using a different terminal, proceed with manual font installation.
|
|||
```text
|
||||
font-family = "MesloLGS NF"
|
||||
```
|
||||
- **ddterm** (Gnome Extension): Right click on open terminal and hover on *Preferences*. Select *Preferences...*
|
||||
in submenu. Click *Text* tab and set the custom font to `MesloLGS NF Regular`.
|
||||
1. Run `p10k configure` to generate a new `~/.p10k.zsh`. The old config may work
|
||||
incorrectly with the new font.
|
||||
|
||||
|
|
|
|||
|
|
@ -4716,7 +4716,9 @@ _p9k_gcloud_prefetch() {
|
|||
if ! _p9k_cache_stat_get $0 ${CLOUDSDK_CONFIG:-~/.config/gcloud}/configurations/config_$P9K_GCLOUD_CONFIGURATION; then
|
||||
local pair account project_id
|
||||
pair="$(gcloud config configurations describe $P9K_GCLOUD_CONFIGURATION \
|
||||
--format=$'value[separator="\1"](properties.core.account,properties.core.project)')"
|
||||
--quiet \
|
||||
--format=$'value[separator="\1"](properties.core.account,properties.core.project)' \
|
||||
</dev/null)"
|
||||
(( ! $? )) && IFS=$'\1' read account project_id <<<$pair
|
||||
_p9k_cache_stat_set "$account" "$project_id"
|
||||
fi
|
||||
|
|
|
|||
Loading…
Reference in New Issue