Skip to content

Commit

Permalink
Fixes #207
Browse files Browse the repository at this point in the history
  • Loading branch information
xxxserxxx committed Mar 15, 2022
1 parent 36cba34 commit 6daf693
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion build/gotop.conf
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ updateinterval=1000000000
averagecpu=false
# If true, show load per CPU
percpuload=true
# Temperature units. C for Celcius, F for Fahrenheit
# Temperature units. C for Celsius, F for Fahrenheit
tempscale=C
# If true, display a status bar
statusbar=false
Expand Down
2 changes: 1 addition & 1 deletion config.go
Original file line number Diff line number Diff line change
Expand Up @@ -241,7 +241,7 @@ func marshal(c *Config) []byte {
fmt.Fprintf(buff, "%s=%t\n", averagecpu, c.AverageLoad)
fmt.Fprintln(buff, "# If true, show load per CPU")
fmt.Fprintf(buff, "%s=%t\n", percpuload, c.PercpuLoad)
fmt.Fprintln(buff, "# Temperature units. C for Celcius, F for Fahrenheit")
fmt.Fprintln(buff, "# Temperature units. C for Celsius, F for Fahrenheit")
fmt.Fprintf(buff, "%s=%c\n", tempscale, c.TempScale)
fmt.Fprintln(buff, "# If true, display a status bar")
fmt.Fprintf(buff, "%s=%t\n", statusbar, c.Statusbar)
Expand Down

0 comments on commit 6daf693

Please sign in to comment.