From 6c347611ecd43c02313c743e03325004110fec62 Mon Sep 17 00:00:00 2001 From: Dylan Araps Date: Tue, 29 Aug 2017 09:34:40 +1000 Subject: [PATCH] general: Fix line length --- neofetch | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/neofetch b/neofetch index a953a60b..872554e9 100755 --- a/neofetch +++ b/neofetch @@ -2261,7 +2261,8 @@ get_locale() { get_gpu_driver() { case "$os" in "Linux") - gpu_driver="$(lspci -nnk | awk -F ': ' '/Display|3D|VGA/{nr[NR+2]}; NR in nr {printf $2 ", "}')" + gpu_driver="$(lspci -nnk | awk -F ': ' \ + '/Display|3D|VGA/{nr[NR+2]}; NR in nr {printf $2 ", "}')" gpu_driver="${gpu_driver%, }" ;; esac