dots/.bin/fzf-fontnames

31 lines
499 B
Plaintext
Raw Normal View History

2022-09-22 13:53:21 +02:00
#!/usr/bin/env bash
fn="/tmp/fontnames.txt"
contains_dash() {
[[ "$1" =~ - ]]
}
update() {
echo "" > "$fn"
font_list=$(fc-list -f "%{fullname}\n")
2022-10-25 21:29:26 +02:00
echo "$font_list" | while read line ; do
2022-09-22 13:53:21 +02:00
first="$(echo "$line" | cut -d',' -f1)"
last="$(echo "$line" | cut -d',' -f2)"
2022-10-25 21:29:26 +02:00
if $(contains_dash "$first"); then
2022-09-22 13:53:21 +02:00
echo "$last" >> "$fn"
else
echo "$first" >> "$fn"
fi
done
}
case "$1" in
--update) update;;
2022-10-25 21:29:26 +02:00
*) cat "$fn" | sort | uniq | awk 'NF' | fzf;;
2022-09-22 13:53:21 +02:00
esac