I actually fixed the double space before '@' in cpu usage!

This commit is contained in:
Dylan 2016-02-01 09:57:48 +11:00
parent dd04093a3b
commit 5729d33cb5
1 changed files with 1 additions and 2 deletions

3
fetch
View File

@ -697,9 +697,8 @@ getcpu () {
# Get cpu name
cpu="$(grep -F 'model name' /proc/cpuinfo)"
cpu=${cpu/model name*: }
cpu=${cpu%% *}
cpu=${cpu/ @*}
cpu=${cpu// }
cpu=${cpu%% }
# Get cpu speed
if [ -d "/sys/devices/system/cpu/cpu0/cpufreq" ]; then