From 078cda7b48222751c8f19e72fec7e25b713375ca Mon Sep 17 00:00:00 2001 From: Dylan Araps Date: Sat, 9 Jun 2018 17:23:42 +1000 Subject: [PATCH] misc: cleanup --- neofetch | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/neofetch b/neofetch index ae144db2..58b330f2 100755 --- a/neofetch +++ b/neofetch @@ -3604,7 +3604,7 @@ get_term_size() { # Fallback to stty if above sequence isn't supported. [[ -z "$lines" || -z "$columns" ]] && \ - read -r lines columns <<< "$(stty size)" + read -r lines columns < <(stty size) # Calculate font size. font_width="$((term_width / columns))"