diff --git a/.github/workflows/trunk-check.yml b/.github/workflows/trunk-check.yml index ec0f3122..d5bb20c1 100644 --- a/.github/workflows/trunk-check.yml +++ b/.github/workflows/trunk-check.yml @@ -16,9 +16,6 @@ jobs: if: github.event.schedule != '0 07 * * 5' name: "⚡" uses: z-shell/.github/.github/workflows/trunk.yml@main - with: - node_version: "lts/*" - pnpm_arguments: "pnpm i" upload: if: github.event.schedule == '0 07 * * 5' name: "🆙" diff --git a/community/gallery/collection/07_themes.mdx b/community/gallery/collection/07_themes.mdx index abdce72f..e3a7cab7 100644 --- a/community/gallery/collection/07_themes.mdx +++ b/community/gallery/collection/07_themes.mdx @@ -43,11 +43,11 @@ fi ::: -Install fonts for powerlevel10k. It has to match your system settings as this is an example of how flexible Zi is and can install anything in a preferred way. +Install nerd fonts for powerlevel10k. It has to match your system settings as this is an example of how flexible Zi is and can install anything in a preferred way. The following snippet placed in the `.zshrc` file will: -- check if conditions are met to proceed with the install +- check if the script runs on a Linux OS and if the specified font directory exists. You may have to adapt the fonts directory for your system (e.g. `${HOME}/.local/share/fonts`). - download, extract, clean not required files, and move fonts to the required directory. - update font cache. @@ -58,7 +58,7 @@ When running: `zi update` will: ```shell zi ice if"[[ -d ${HOME}/.fonts/ttf ]] && [[ $OSTYPE = linux* ]]" \ - id-as"meslo" from"gh-r" bpick"Meslo.zip" extract nocompile depth"1" \ + id-as"meslo" from"gh-r" bpick"Meslo.tar.xz" extract nocompile depth"1" \ atclone="rm -f *Windows*; mv -vf *.ttf ${HOME}/.fonts/ttf/; fc-cache -v -f" atpull"%atclone" zi light ryanoasis/nerd-fonts ```