From 07084eb657a91f8c893688018065a83556482ca2 Mon Sep 17 00:00:00 2001 From: Dylan Date: Fri, 29 Jan 2016 21:32:51 +1100 Subject: [PATCH] Fix stray forward slash in OS X GPU output. --- fetch | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/fetch b/fetch index d5cbc748..445f4519 100755 --- a/fetch +++ b/fetch @@ -873,7 +873,7 @@ getgpu () { gpu=$( \ system_profiler SPDisplaysDataType | \ awk -F': ' '/^\ *Chipset Model:/ {printf $2}' | \ - awk '{ printf "%s / ", $0 }' + awk '{ printf "%s ", $0 }' ) gpu=${gpu//'/ $'} ;;