This commit is contained in:
Daylin Morgan 2024-05-31 14:59:23 -05:00
parent 42ac8bee8c
commit 05b641bc97
Signed by: daylin
GPG Key ID: 950D13E9719334AD
7 changed files with 24 additions and 32 deletions

View File

@ -5,12 +5,10 @@ import (
) )
var ewwCmd = &cobra.Command{ var ewwCmd = &cobra.Command{
Use:"eww" , Use: "eww",
Short: "eww integration", Short: "eww integration",
} }
func init() { func init() {
rootCmd.AddCommand(ewwCmd) rootCmd.AddCommand(ewwCmd)
} }

View File

@ -8,7 +8,7 @@ import (
) )
var makoCmd = &cobra.Command{ var makoCmd = &cobra.Command{
Use:"mako" , Use: "mako",
Short: "mako integration", Short: "mako integration",
Run: func(cmd *cobra.Command, args []string) { Run: func(cmd *cobra.Command, args []string) {
fmt.Println("hahah mako baby") fmt.Println("hahah mako baby")
@ -18,5 +18,3 @@ var makoCmd = &cobra.Command{
func init() { func init() {
rootCmd.AddCommand(makoCmd) rootCmd.AddCommand(makoCmd)
} }

View File

@ -2,12 +2,12 @@ package cmd
import ( import (
"os" "os"
cc "github.com/ivanpirog/coloredcobra"
"git.dayl.in/daylin/hyprman/internal" "git.dayl.in/daylin/hyprman/internal"
cc "github.com/ivanpirog/coloredcobra"
"github.com/spf13/cobra" "github.com/spf13/cobra"
) )
func Execute() { func Execute() {
cc.Init(&cc.Config{ cc.Init(&cc.Config{
RootCmd: rootCmd, RootCmd: rootCmd,
@ -25,8 +25,10 @@ func Execute() {
} }
} }
var configPath string var (
var hm = &hyprman.Hyprman{} configPath string
hm = &hyprman.Hyprman{}
)
var rootCmd = &cobra.Command{ var rootCmd = &cobra.Command{
Use: "hyprman", Use: "hyprman",
@ -36,11 +38,7 @@ var rootCmd = &cobra.Command{
}, },
} }
func init() { func init() {
rootCmd.CompletionOptions.HiddenDefaultCmd = true rootCmd.CompletionOptions.HiddenDefaultCmd = true
rootCmd.PersistentFlags().StringVarP(&configPath, "config", "c", hyprman.DefaultConfigPath(), "path to config file") rootCmd.PersistentFlags().StringVarP(&configPath, "config", "c", hyprman.DefaultConfigPath(), "path to config file")
} }

View File

@ -277,4 +277,3 @@ func (hm *Hyprman) Watch() {
hm.handleHyprEvent(line) hm.handleHyprEvent(line)
} }
} }

View File

@ -33,4 +33,3 @@ package hyprman
// log.Fatal(err) // log.Fatal(err)
// } // }
// } // }