General: Exit awk early
This commit is contained in:
parent
2fb963fcb8
commit
9596b0b921
2
neofetch
2
neofetch
|
@ -1837,7 +1837,7 @@ get_term_font() {
|
||||||
;;
|
;;
|
||||||
|
|
||||||
"sakura"*)
|
"sakura"*)
|
||||||
term_font="$(awk -F '=' '/^font=/ {a=$2} END{print a}' "${XDG_CONFIG_HOME}/sakura/sakura.conf")"
|
term_font="$(awk -F '=' '/^font=/ {print $2; exit}' "${XDG_CONFIG_HOME}/sakura/sakura.conf")"
|
||||||
;;
|
;;
|
||||||
|
|
||||||
"terminology")
|
"terminology")
|
||||||
|
|
Reference in New Issue