summaryrefslogtreecommitdiff
path: root/config.go
diff options
context:
space:
mode:
Diffstat (limited to 'config.go')
-rw-r--r--config.go13
1 files changed, 13 insertions, 0 deletions
diff --git a/config.go b/config.go
new file mode 100644
index 0000000..27badc9
--- /dev/null
+++ b/config.go
@@ -0,0 +1,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{},
+}