Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions screenfetch-dev
Original file line number Diff line number Diff line change
Expand Up @@ -1641,14 +1641,14 @@ detectcpu () {
fi
fi
if [[ "${cpun}" -gt "1" ]]; then
cpun="${cpun}x "
cpun="${cpun}x"
else
cpun=""
fi
if [ -z "$cpufreq" ]; then
cpu="${cpun}${cpu}"
else
cpu="$cpu @ ${cpun}${cpufreq}"
cpu="$cpu (${cpun}) @ ${cpufreq}"
fi
if [ -d '/sys/class/hwmon/' ]; then
for dir in /sys/class/hwmon/* ; do
Expand Down