From 5eac373c2ab5843f82d1df5cdce84e3f6ac252b5 Mon Sep 17 00:00:00 2001 From: thek4n Date: Wed, 26 Nov 2025 19:30:05 +0300 Subject: [PATCH] fix fonts --- home/user/.config/zsh/.zshrc | 2 +- install-hooks/font/pre-install | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/home/user/.config/zsh/.zshrc b/home/user/.config/zsh/.zshrc index a7c49be..1e1e788 100644 --- a/home/user/.config/zsh/.zshrc +++ b/home/user/.config/zsh/.zshrc @@ -20,4 +20,4 @@ if \ [ -n "${SSH_CLIENT}" ] then tmux source-file "${XDG_CONFIG_HOME}/tmux/remote.conf" -fi \ No newline at end of file +fi diff --git a/install-hooks/font/pre-install b/install-hooks/font/pre-install index d938d05..4e3f8ca 100755 --- a/install-hooks/font/pre-install +++ b/install-hooks/font/pre-install @@ -3,10 +3,10 @@ set -e sub="${HOME}/.local/share/fonts" - mkdir -p "${sub}" + cd "${sub}" -wget 'https://github.com/ryanoasis/nerd-fonts/releases/download/v2.1.0/FiraCode.zip' +wget -c -O FiraCode.zip 'https://github.com/ryanoasis/nerd-fonts/releases/download/v2.1.0/FiraCode.zip' unzip FiraCode.zip -d "${sub}" git clone 'https://github.com/powerline/fonts.git' --depth=1 cd fonts