Compare commits

...

2 commits

Author SHA1 Message Date
f698f2614e
fix completions 2024-05-31 15:10:28 -05:00
05b641bc97
gofmt 2024-05-31 14:59:23 -05:00
7 changed files with 24 additions and 32 deletions

View file

@ -7,10 +7,11 @@ import (
var ewwCmd = &cobra.Command{
Use: "eww",
Short: "eww integration",
PersistentPreRun: func(cmd *cobra.Command, args []string) {
hm.LoadConfig(configPath)
},
}
func init() {
rootCmd.AddCommand(ewwCmd)
}

View file

@ -18,5 +18,3 @@ var makoCmd = &cobra.Command{
func init() {
rootCmd.AddCommand(makoCmd)
}

View file

@ -2,12 +2,12 @@ package cmd
import (
"os"
cc "github.com/ivanpirog/coloredcobra"
"git.dayl.in/daylin/hyprman/internal"
cc "github.com/ivanpirog/coloredcobra"
"github.com/spf13/cobra"
)
func Execute() {
cc.Init(&cc.Config{
RootCmd: rootCmd,
@ -25,22 +25,17 @@ func Execute() {
}
}
var configPath string
var hm = &hyprman.Hyprman{}
var (
configPath string
hm = &hyprman.Hyprman{}
)
var rootCmd = &cobra.Command{
Use: "hyprman",
Short: "hyprland companion app",
PersistentPreRun: func(cmd *cobra.Command, args []string) {
hm.LoadConfig(configPath)
},
}
func init() {
rootCmd.CompletionOptions.HiddenDefaultCmd = true
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)
}
}

View file

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