hyprman/cmd/eww.go

15 lines
169 B
Go

package cmd
import (
"github.com/spf13/cobra"
)
var ewwCmd = &cobra.Command{
Use: "eww",
Short: "eww integration",
}
func init() {
rootCmd.AddCommand(ewwCmd)
}