cjbassi / gotop

A terminal based graphical activity monitor inspired by gtop and vtop
GNU Affero General Public License v3.0
7.36k stars 436 forks source link

Add degree symbol to temperature values #177

Open fleaz opened 4 years ago

fleaz commented 4 years ago

Hey,

the correct unit symbols for temperatures are "°C" and "°F" so I added the degree symbol to the format string in temp.go. Using the official unicode characters (U+2103 and U+2109) will probably have compatibility issues in some terminals so I opted for their canonical decomposition.

Best, Felix