Refactor fzf fontnames script

master
Hektor Misplon 2022-09-22 20:42:26 +02:00
parent 8951c2e56b
commit e9b0a6acd2
1 changed files with 3 additions and 3 deletions

View File

@ -11,11 +11,11 @@ update() {
font_list=$(fc-list -f "%{fullname}\n")
echo "$font_list" | while read line ; do
echo "$font_list" | while read -r line ; do
first="$(echo "$line" | cut -d',' -f1)"
last="$(echo "$line" | cut -d',' -f2)"
if $(contains_dash "$first"); then
if "$(contains_dash "$first")"; then
echo "$last" >> "$fn"
else
echo "$first" >> "$fn"
@ -25,5 +25,5 @@ update() {
case "$1" in
--update) update;;
*) cat "$fn" | sort | uniq | awk 'NF' | fzf;;
*) sort "$fn" | uniq | awk 'NF' | fzf;;
esac