-
Notifications
You must be signed in to change notification settings - Fork 8
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Download tar instead of zip archive when installing nerd-fonts. #501
Conversation
In release v3.0.2 (https://github.com/ryanoasis/nerd-fonts/releases/tag/v3.0.2), the release archives are also provided as .tar.xz which results in a size decrease of ~90%. zi can handle both tar and zi archives. Signed-off-by: sebastian <[email protected]>
Merging to
|
@ reviewer:
zi ice if"[[ -d ${HOME}/.fonts/ttf ]] && [[ $OSTYPE = linux* ]]" \
.....
atclone="rm -f *Windows*; mv -vf *.ttf ${HOME}/.fonts/ttf/${id}; fc-cache -v -f" atpull"%atclone"
..... instead of atclone="rm -f *Windows*; mv -vf *.ttf ${HOME}/.fonts/ttf; fc-cache -v -f" atpull"%atclone" |
@meinzer1899 I will do triage and update you on this 👍 |
After trying out multiple scenarios, I concluded that the install command becomes long and complex. From user feedback and related conversations, it became clear that Zi is over-engineered and has become too complex for the majority. I think the best route to continue is to simplify and promote the creation of Zsh plugins, Zi annexes and Zi packages. This is relatively easy, super flexible, and can be used/improved by others. I think the best approach for installing fonts would be to create an annex, which would allow an easy, reliable, and flexible way to install fonts. Users would be able to install the font(s) using an annex with zi font'Meslo'
zi light z-shell/0 What's your opinion on this? |
Signed-off-by: Sall <[email protected]>
There hasn't been any activity on this pull request recently, and in order to prioritize active work, it has been marked as stale. This PR will be closed and locked in 7 days if no further activity occurs. Thank you for your contributions! |
Pull Request closed and locked due to lack of activity. If you'd like to build on this closed PR, you can clone it using this method: https://stackoverflow.com/a/14969986 Then open a new PR, referencing this closed PR in your message. |
In release v3.0.2 (https://github.com/ryanoasis/nerd-fonts/releases/tag/v3.0.2), the release archives are also provided as .tar.xz which results in a size decrease of ~90%. zi can handle both tar and zip archives.