Commit 9596b0b9 authored by Michael Straube's avatar Michael Straube

General: Exit awk early

parent 2fb963fc
...@@ -1837,7 +1837,7 @@ get_term_font() { ...@@ -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")
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment