diff options
| author | filip <“filip.rabiega@gmail.com”> | 2026-02-14 17:18:10 +0100 |
|---|---|---|
| committer | filip <“filip.rabiega@gmail.com”> | 2026-02-14 17:18:10 +0100 |
| commit | d1ec85edcfb34f40f35759f59e66f2205d905aae (patch) | |
| tree | 3707fbf2fae5eb07fbfc2e3c42ffb6aafa436e66 /installfont | |
| parent | 0dea101a038ba195048b4d0bc704f203d9cd1316 (diff) | |
| download | chadscripts-d1ec85edcfb34f40f35759f59e66f2205d905aae.tar.gz chadscripts-d1ec85edcfb34f40f35759f59e66f2205d905aae.tar.bz2 chadscripts-d1ec85edcfb34f40f35759f59e66f2205d905aae.zip | |
add se texclear samedir openmd installfont fzo drecord
Diffstat (limited to 'installfont')
| -rwxr-xr-x | installfont | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/installfont b/installfont new file mode 100755 index 0000000..5fd978f --- /dev/null +++ b/installfont @@ -0,0 +1,9 @@ +#!/bin/sh +# Example: ./install-nerd-font.sh JetBrainsMono +FONT=$1 +mkdir -p ~/.local/share/fonts +cd ~/.local/share/fonts || exit +wget "https://github.com/ryanoasis/nerd-fonts/releases/latest/download/${FONT}.zip" +unzip "${FONT}.zip" +rm "${FONT}.zip" LICENSE.md readme.md +fc-cache -fv |
