Skip to content

Commit

Permalink
feat: Add install-fonts.sh for extra font installs
Browse files Browse the repository at this point in the history
  • Loading branch information
zelikos committed Jun 15, 2024
1 parent 9cd0fa5 commit cd0d679
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 0 deletions.
Empty file modified scripts/base/build-base.sh
100644 → 100755
Empty file.
9 changes: 9 additions & 0 deletions scripts/base/install-fonts.sh
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
#!/usrbin/env bash

set -ouex pipefail

# Install Hack Nerd Font
curl --output-dir /tmp -LO https://github.com/ryanoasis/nerd-fonts/releases/download/v3.2.1/Hack.zip
mkdir -p /usr/share/fonts/Hack
unzip /tmp/Hack.zip -d /usr/share/fonts/Hack
fc-cache -f /usr/share/fonts/Hack

0 comments on commit cd0d679

Please sign in to comment.