summaryrefslogtreecommitdiff
path: root/main.go
blob: 87ca5826746af2c6bcb23986a1a5dd6be9635e69 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
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
	fmt.Println(main.Display())
}