//go:build linux package main import "golang.design/x/hotkey" // Mod1 = Alt, Mod4 = Super/Win on most Linux desktop environments. var modMap = map[string]hotkey.Modifier{ "ctrl": hotkey.ModCtrl, "shift": hotkey.ModShift, "alt": hotkey.Mod1, "win": hotkey.Mod4, "super": hotkey.Mod4, }