From ae2fff96558f0336cd8978fb8456a7453c52a008 Mon Sep 17 00:00:00 2001 From: Caleb Bassi Date: Wed, 23 May 2018 16:53:04 -0700 Subject: Make ps command work on OSX --- src/widgets/proc_unix.go | 7 ++++--- 1 file 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) -- cgit v1.2.3