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{
Use:"eww" ,
Short: "eww integration",
Use: "eww",
Short: "eww integration",
}
func init() {
rootCmd.AddCommand(ewwCmd)
rootCmd.AddCommand(ewwCmd)
}

View File

@ -8,7 +8,7 @@ var startCmd = &cobra.Command{
Use: "start",
Short: "Launch eww",
Run: func(cmd *cobra.Command, args []string) {
hm.LaunchEww()
hm.LaunchEww()
},
}

View File

@ -8,7 +8,7 @@ var watchCmd = &cobra.Command{
Use: "watch",
Short: "Watch hyprland events and propagate to eww",
Run: func(cmd *cobra.Command, args []string) {
hm.Watch()
hm.Watch()
},
}

View File

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

View File

@ -2,12 +2,12 @@ package cmd
import (
"os"
"git.dayl.in/daylin/hyprman/internal"
cc "github.com/ivanpirog/coloredcobra"
"git.dayl.in/daylin/hyprman/internal"
"github.com/spf13/cobra"
)
func Execute() {
cc.Init(&cc.Config{
RootCmd: rootCmd,
@ -25,22 +25,20 @@ 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)
},
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")
rootCmd.CompletionOptions.HiddenDefaultCmd = true
rootCmd.PersistentFlags().StringVarP(&configPath, "config", "c", hyprman.DefaultConfigPath(), "path to config file")
}

View File

@ -203,7 +203,7 @@ func (hm *Hyprman) generateEwwClasses() {
}
func ewwBar1(cmd string) {
time.Sleep(200 * time.Second)
time.Sleep(200 * time.Second)
if err := exec.Command("eww", cmd, "bar1").Run(); err != nil {
log.Fatal(err)
}
@ -263,7 +263,7 @@ func (hm *Hyprman) Watch() {
}
defer conn.Close()
reader := bufio.NewReader(conn)
hm.generateEwwClasses()
hm.generateEwwClasses()
for {
line, err := reader.ReadString('\n')
if err != nil {
@ -277,4 +277,3 @@ func (hm *Hyprman) Watch() {
hm.handleHyprEvent(line)
}
}

View File

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