hyprman/cmd/eww_start.go

18 lines
238 B
Go
Raw Normal View History

2024-05-21 15:41:20 -05:00
package cmd
import (
"github.com/spf13/cobra"
)
var startCmd = &cobra.Command{
Use: "start",
Short: "Launch eww",
Run: func(cmd *cobra.Command, args []string) {
2024-05-31 14:59:23 -05:00
hm.LaunchEww()
2024-05-21 15:41:20 -05:00
},
}
func init() {
ewwCmd.AddCommand(startCmd)
}