i3-blocks-go/main.go
2022-08-28 14:59:15 +02:00

13 lines
162 B
Go

package main
import (
"fmt"
r "gitnet.fr/deblan/i3-blocks-go/rendering"
)
func main() {
render := r.Block("Hello", r.BlockOptions{})
fmt.Println(render)
}