package cmd import ( "github.com/spf13/cobra" ) var watchCmd = &cobra.Command{ Use: "watch", Short: "Watch hyprland events and propagate to eww", Run: func(cmd *cobra.Command, args []string) { hm.Watch() }, } func init() { ewwCmd.AddCommand(watchCmd) }