fix completions
This commit is contained in:
parent
05b641bc97
commit
f698f2614e
2 changed files with 3 additions and 3 deletions
|
@ -7,6 +7,9 @@ import (
|
||||||
var ewwCmd = &cobra.Command{
|
var ewwCmd = &cobra.Command{
|
||||||
Use: "eww",
|
Use: "eww",
|
||||||
Short: "eww integration",
|
Short: "eww integration",
|
||||||
|
PersistentPreRun: func(cmd *cobra.Command, args []string) {
|
||||||
|
hm.LoadConfig(configPath)
|
||||||
|
},
|
||||||
}
|
}
|
||||||
|
|
||||||
func init() {
|
func init() {
|
||||||
|
|
|
@ -33,9 +33,6 @@ var (
|
||||||
var rootCmd = &cobra.Command{
|
var rootCmd = &cobra.Command{
|
||||||
Use: "hyprman",
|
Use: "hyprman",
|
||||||
Short: "hyprland companion app",
|
Short: "hyprland companion app",
|
||||||
PersistentPreRun: func(cmd *cobra.Command, args []string) {
|
|
||||||
hm.LoadConfig(configPath)
|
|
||||||
},
|
|
||||||
}
|
}
|
||||||
|
|
||||||
func init() {
|
func init() {
|
||||||
|
|
Loading…
Reference in a new issue