summaryrefslogtreecommitdiffstats
path: root/src/widgets/proc_unix.go
diff options
context:
space:
mode:
Diffstat (limited to 'src/widgets/proc_unix.go')
-rw-r--r--src/widgets/proc_unix.go7
1 files changed, 4 insertions, 3 deletions
diff --git a/src/widgets/proc_unix.go b/src/widgets/proc_unix.go
index 2253aca..b422737 100644
--- a/src/widgets/proc_unix.go
+++ b/src/widgets/proc_unix.go
@@ -22,10 +22,11 @@ func (self *Proc) update() {
}
func Processes() []Process {
- output, _ := exec.Command("ps", "--no-headers", "-axo", "pid,comm,pcpu,pmem,args").Output()
- strOutput := strings.TrimSpace(string(output))
+ output, _ := exec.Command("ps", "-axo", "pid,comm,pcpu,pmem,args").Output()
+ // converts to []string and removes the header
+ strOutput := strings.Split(strings.TrimSpace(string(output)), "\n")[1:]
processes := []Process{}
- for _, line := range strings.Split(strOutput, "\n") {
+ for _, line := range strOutput {
split := strings.Fields(line)
pid, _ := strconv.Atoi(split[0])
cpu, _ := strconv.ParseFloat(split[2], 64)