Merge branch 'laptop'

This commit is contained in:
Emile Clark-Boman 2025-08-31 15:17:53 +10:00
commit 484a8df77b
14 changed files with 550 additions and 22 deletions

12
scripts/fontgrep Executable file
View file

@ -0,0 +1,12 @@
#!/usr/bin/env bash
function fontgrep {
fc-list \
| grep $@ \
| awk '{$1=""; print substr($0, 2, length($0)-1) }' \
| grep -oE '^\s*[^,]+' \
| sort \
| uniq
}
fontgrep $@