summaryrefslogtreecommitdiff
path: root/lib/font/graphics/git
diff options
context:
space:
mode:
authorkaa <kaa@disroot.org>2025-09-01 22:09:12 -0700
committerkaa <kaa@disroot.org>2025-09-01 22:09:12 -0700
commit980997c3441f52a5a4f79326c86e9a93a0a35853 (patch)
tree1d0bdc3a60f2be49d336624b31c9bb9b060e3218 /lib/font/graphics/git
parentf38b4ad8b7543b088c5c0c4018285127ad4f4680 (diff)
Font metadataHEADmaster
Diffstat (limited to 'lib/font/graphics/git')
-rwxr-xr-xlib/font/graphics/git/dl.sh16
-rw-r--r--lib/font/graphics/git/list8
-rw-r--r--lib/font/graphics/git/notes2
3 files changed, 26 insertions, 0 deletions
diff --git a/lib/font/graphics/git/dl.sh b/lib/font/graphics/git/dl.sh
new file mode 100755
index 0000000..a93c134
--- /dev/null
+++ b/lib/font/graphics/git/dl.sh
@@ -0,0 +1,16 @@
+#!/bin/sh
+
+< list sort -R | while read -r repo
+do
+ echo "$repo"
+ dir="$(echo $line | sed -e "s|.*/||")"
+ if ! [ -d "$dir" ]
+ then
+ git clone --depth 1 "$repo"
+ # Disk space isn't free.
+ #else
+ # cd "$dir"
+ # git pull
+ # cd ..
+ fi
+done
diff --git a/lib/font/graphics/git/list b/lib/font/graphics/git/list
new file mode 100644
index 0000000..6912d25
--- /dev/null
+++ b/lib/font/graphics/git/list
@@ -0,0 +1,8 @@
+https://github.com/adobe-fonts/source-serif
+https://github.com/adobe-fonts/source-sans
+https://github.com/anrt-type/GoticoAntiqua
+https://github.com/anrt-type/ANRT-Baskervville
+https://github.com/silnrsi/font-gentium
+https://github.com/Fonthausen/CrimsonPro
+https://github.com/huertatipografica/Alegreya
+https://github.com/huertatipografica/piazzolla
diff --git a/lib/font/graphics/git/notes b/lib/font/graphics/git/notes
new file mode 100644
index 0000000..b068bab
--- /dev/null
+++ b/lib/font/graphics/git/notes
@@ -0,0 +1,2 @@
+Some distributors bundle multiple families in a singular repository.
+This requires an organizational indirection to handle intelligently.