bin/install-figlet-fonts @ 4673e928c08e
Split Stump config
author |
Steve Losh <steve@stevelosh.com> |
date |
Tue, 19 Mar 2024 13:55:42 -0400 |
parents |
5dd4e6c93b90 |
children |
(none) |
#!/usr/bin/env bash
set -euo pipefail
# I'm so sick of doing this shit by hand every time I get a new computer.
#
# cd ~/src/
# git clont https://github.com/xero/figlet-fonts
for f in /home/sjl/src/figlet-fonts/*.fl*; do
dest="$(echo "$f" | cut -d/ -f 6 | tr '[:upper:] ' '[:lower:]-')"
sudo cp "$f" "/usr/share/figlet/$dest"
done