summaryrefslogtreecommitdiff
path: root/main.go
blob: 6ebbad4d1241d03fc4860326ff7cc96aca5a7f2d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
package main

/*
	Author: Jackson Taylor
	Date: 3/28/2020
	Description: This is Jackson's Awesome Status Bar for suckless', very nice, dwm.
*/

import (
	"fmt"
)

func main() {
	main := Bar{
		Modules: BarModules,
	}

	// Display the bar info to stdout
	// TODO: Change this to interact with Xorg directly?
	fmt.Println(main.Display())
}