-
Notifications
You must be signed in to change notification settings - Fork 0
/
main.go
149 lines (138 loc) · 3.44 KB
/
main.go
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
package main
import (
"fmt"
"os"
"strconv"
"strings"
"github.com/sstallion/go-hid"
"github.com/urfave/cli/v2"
)
func main() {
// Initalize mouse pointer then iterate over the supported devices until a match is found.
var mouse *GloriousMouse
for _, mouse = range SupportedDevices {
GetDevice(mouse)
if _, ok := mouse.Path(); ok {
break
}
}
if mouse == nil {
fmt.Println("No supported mouse detected.")
os.Exit(0)
}
fmt.Printf("Device detected: %v (%v)\n", mouse.name, mouse.path)
dev, err := hid.OpenPath(mouse.path)
if err != nil {
fmt.Printf("%v, are you root?\n", err)
os.Exit(1)
}
device := Device{dev, mouse, &GloriousConfig{}, 0}
fmt.Printf("Firmware version: %v\n", device.GetFirmwareVersion())
device.GetConfig()
app := &cli.App{
Name: "go-glorious",
Usage: "Configure Glorious devices on linux",
Commands: []*cli.Command{
{
Name: "set",
Aliases: []string{"s"},
Usage: "set config option",
Subcommands: []*cli.Command{
{
Name: "dpi",
Usage: "Set dpi",
Before: runBefore,
After: device.runAfter,
Action: func(c *cli.Context) error {
dpiInt, err := strconv.Atoi(c.Args().First())
if err != nil {
return err
}
if err = device.conf.SetDPI(1, dpiInt); err != nil {
return err
}
if err = device.conf.SetActiveDPI(1); err != nil {
return err
}
fmt.Printf("Setting dpi to %vdpi\n", dpiInt)
return nil
},
},
{
Name: "debounce",
Usage: "Set debounce time",
Aliases: []string{"db", "dbt"},
Before: runBefore,
After: device.runAfter,
Action: func(c *cli.Context) error {
dbtInt, err := strconv.Atoi(c.Args().First())
if err != nil {
return err
}
if err = device.SetDebounceTime(dbtInt); err != nil {
return err
}
fmt.Printf("Setting debounce time to %vms\n", dbtInt)
return nil
},
},
{
Name: "lighting",
Usage: "Lighting configuration",
Aliases: []string{"l"},
Subcommands: []*cli.Command{
{
Name: "effect",
Aliases: []string{"e"},
Before: runBefore,
After: device.runAfter,
Action: func(c *cli.Context) error {
lightingName := strings.Join(c.Args().Slice(), " ")
lightingMode, ok := NameToRGBEffect(lightingName)
if !ok {
return fmt.Errorf("invalid lighting mode")
}
device.conf.SetRGBEffect(lightingMode)
return nil
},
},
{
Name: "brightness",
Aliases: []string{"b"},
Before: runBefore,
After: device.runAfter,
Action: func(c *cli.Context) error {
brightness, err := strconv.Atoi(c.Args().First())
if err != nil {
return err
}
return device.conf.SetRGBBrightness(brightness)
},
},
{
Name: "speed",
Aliases: []string{"s"},
Before: runBefore,
After: device.runAfter,
Action: func(c *cli.Context) error {
speed, err := strconv.Atoi(c.Args().First())
if err != nil {
return err
}
return device.conf.SetRGBSpeed(speed)
},
},
},
},
},
},
},
Version: "v1.1.0",
}
app.EnableBashCompletion = true
err = app.Run(os.Args)
if err != nil {
fmt.Println(err)
os.Exit(1)
}
}