diff options
author | Jackson Taylor <jtaylormuffins@gmail.com> | 2020-04-12 14:32:53 -0400 |
---|---|---|
committer | Jackson Taylor <jtaylormuffins@gmail.com> | 2020-04-12 14:32:53 -0400 |
commit | bd8fd546b32193cf50f276079bc9f5dbbb3c7fbf (patch) | |
tree | 08ad237d4d5de8dd348bb946eab6b57ef40315a0 /main.go | |
parent | 123bb9ad397d901484ac1841666a2b962cbc211f (diff) |
Change bar output to stdout with Println
Plan to impelement direct X11 integration later
Diffstat (limited to 'main.go')
-rw-r--r-- | main.go | 18 |
1 files changed, 3 insertions, 15 deletions
@@ -8,8 +8,6 @@ package main import ( "fmt" - "os/exec" - "time" ) // Module is the interface for you to extend what your bar does. @@ -26,19 +24,9 @@ var BarModules = []Module{ func main() { main := Bar{ - Modules: BarModules, - RefreshRate: time.Second * 1, + Modules: BarModules, } - fmt.Println("Bar Started") - for { - display(main.Display()) - time.Sleep(main.RefreshRate) - fmt.Println("Updating bar") - } -} - -func display(value string) (err error) { - err = exec.Command("xsetroot", "-name", value).Run() - return err + // Display the bar info to stdout + fmt.Println(main.Display()) } |