-
-
Notifications
You must be signed in to change notification settings - Fork 10
/
main.go
47 lines (40 loc) · 963 Bytes
/
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
// Copyright 2022 The golang.design Initiative Authors.
// All rights reserved. Use of this source code is governed
// by a MIT license that can be found in the LICENSE file.
package main
import (
"fmt"
"runtime"
"github.com/go-gl/glfw/v3.3/glfw"
"golang.design/x/hotkey"
)
func init() {
runtime.LockOSThread()
}
func main() {
err := glfw.Init()
if err != nil {
panic(err)
}
defer glfw.Terminate()
window, err := glfw.CreateWindow(640, 480, "golang.design/x/hotkey", nil, nil)
if err != nil {
panic(err)
}
go func() {
// Register a desired hotkey.
hk := hotkey.New([]hotkey.Modifier{hotkey.ModCtrl, hotkey.ModShift}, hotkey.KeyS)
if err := hk.Register(); err != nil {
panic("hotkey registration failed")
}
// Start listen hotkey event whenever it is ready.
for range hk.Keydown() {
fmt.Println("keydown!")
}
}()
window.MakeContextCurrent()
for !window.ShouldClose() {
window.SwapBuffers()
glfw.PollEvents()
}
}