i3-blocks-go/main.go

13 lines
162 B
Go
Raw Normal View History

2022-08-28 14:59:15 +02:00
package main
import (
"fmt"
r "gitnet.fr/deblan/i3-blocks-go/rendering"
)
func main() {
render := r.Block("Hello", r.BlockOptions{})
fmt.Println(render)
}