From c1cde629c44c7c1876a069d9e8f51d20ceb86e9a Mon Sep 17 00:00:00 2001 From: Dylan Araps Date: Sat, 2 Jun 2018 10:07:04 +1000 Subject: [PATCH] resolution: Fix lint error. --- neofetch | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/neofetch b/neofetch index 98565843..bcc4db88 100755 --- a/neofetch +++ b/neofetch @@ -2529,8 +2529,8 @@ get_resolution() { case "$refresh_rate" in "on") resolution="$(xrandr --nograb --current |\ - awk 'match($0,/[0-9]*\.[0-9]*\*/) {printf $1 " @ "\ - substr($0,RSTART,RLENGTH) "Hz, "}')" + awk 'match($0,/[0-9]*\.[0-9]*\*/) { + printf $1 " @ " substr($0,RSTART,RLENGTH) "Hz, "}')" ;; "off")