Increase cpu and mem percentage padding

This commit is contained in:
Caleb Bassi 2018-04-19 19:58:04 -07:00
parent ee84a9da2c
commit 33e6b73398

View File

@ -1,6 +1,7 @@
package widgets
import (
"fmt"
"os/exec"
"sort"
"strconv"
@ -280,8 +281,8 @@ func FieldsToStrings(P []Process) [][]string {
strings[i] = make([]string, 4)
strings[i][0] = strconv.Itoa(int(p.PID))
strings[i][1] = p.Command
strings[i][2] = strconv.FormatFloat(p.CPU, 'f', 1, 64)
strings[i][3] = strconv.FormatFloat(float64(p.Mem), 'f', 1, 32)
strings[i][2] = fmt.Sprintf("%4s", strconv.FormatFloat(p.CPU, 'f', 1, 64))
strings[i][3] = fmt.Sprintf("%4s", strconv.FormatFloat(float64(p.Mem), 'f', 1, 32))
}
return strings
}