summaryrefslogtreecommitdiff
path: root/config.go
blob: 27badc9c9bb4997bc3ceaa8245ee208f5434c866 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
package main

// This is the main configuration file for jasbr
// You can comment out any modules you don't want to use
// you can also add any new ones here that you make
// Order does matter

// Modules that are displayed in the bar
var BarModules = []Module{
	DateModule{},
	BatteryModule{},
	TimeModule{},
}