This repo contains a package for creating BitBar plugins in Go.
Creating a BitBar plugin is as simple as (see the godocs for more details):
package main
import "github.com/johnmccabe/go-bitbar"
func main() {
app := bitbar.New()
app.StatusLine("Hello")
submenu := app.NewSubMenu()
submenu.Line("World!")
app.Render()
}
- vmpooler-bitbar is used to monitor and manage VMs running on Puppetlabs vmpooler
- openfaas-bitbar is used to monitor and manage functions running on OpenFaaS
- If you are using go-bitbar please reach out to be added to this list