summaryrefslogtreecommitdiff
path: root/main.go
diff options
context:
space:
mode:
Diffstat (limited to 'main.go')
-rw-r--r--main.go61
1 files changed, 61 insertions, 0 deletions
diff --git a/main.go b/main.go
new file mode 100644
index 0000000..dfaad2a
--- /dev/null
+++ b/main.go
@@ -0,0 +1,61 @@
+package main
+
+/*
+ Author: Jackson Taylor
+ Date: 3/28/2020
+ Description: This is Jackson's Awesome Status Bar for suckless', very nice, dwm.
+*/
+
+import (
+ "fmt"
+ // "os"
+ "os/exec"
+ // "time"
+)
+
+// Bar is the struct that holds each of the modules and displays the data from them
+type Bar struct {
+ Modules []Module
+}
+
+type Module interface {
+ GetInfo() (string, error)
+}
+
+var BarModules = []Module{
+ DateModule{},
+ BatteryModule{},
+}
+
+func main() {
+
+ main := Bar{
+ Modules: BarModules,
+ }
+ fmt.Println("Bar Started")
+
+ var value string
+
+ for {
+ value = ""
+ for _, b := range main.Modules {
+ p1, err := b.GetInfo()
+ if err != nil {
+ fmt.Println(err)
+ continue
+ }
+ value += "[" + p1 + "]"
+ }
+
+ setBar(value)
+ }
+}
+
+func getBattery() string {
+ return "100 %"
+}
+
+func setBar(value string) (err error) {
+ err = exec.Command("xsetroot", "-name", value).Run()
+ return err
+}