hyprman/cmd/eww.go

18 lines
262 B
Go
Raw Normal View History

2024-05-21 15:41:20 -05:00
package cmd
import (
"github.com/spf13/cobra"
)
var ewwCmd = &cobra.Command{
2024-05-31 14:59:23 -05:00
Use: "eww",
Short: "eww integration",
2024-05-31 15:10:28 -05:00
PersistentPreRun: func(cmd *cobra.Command, args []string) {
2024-06-11 11:53:13 -05:00
hm.LoadConfig(configPath)
},
2024-05-21 15:41:20 -05:00
}
func init() {
2024-05-31 14:59:23 -05:00
rootCmd.AddCommand(ewwCmd)
2024-05-21 15:41:20 -05:00
}