-
-
Notifications
You must be signed in to change notification settings - Fork 10
/
main.go
43 lines (33 loc) · 808 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
// 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 (
"os"
"gioui.org/app"
"gioui.org/unit"
"golang.design/x/hotkey"
)
func main() {
go fn()
app.Main()
}
func fn() {
w := app.NewWindow(app.Title("golang.design/x/hotkey"), app.Size(unit.Dp(200), unit.Dp(200)))
go reghk()
for range w.Events() {
}
}
func reghk() {
// 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")
}
// Unregister the hotkey when keydown event is triggered
for range hk.Keydown() {
hk.Unregister()
}
// Exist the app.
os.Exit(0)
}