go-xkg / xkg

User level X Keyboard Grabber

Home Page:https://godoc.org/github.com/go-xkg/xkg

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

xkg - X Keyboard Grabber

GoDoc

Installation

go get gopkg.in/xkg.v0

Usage example:

package main

import (
	"fmt"
	"gopkg.in/xkg.v0"
)

func main() {
	var keys = make(chan int, 100)

	go xkg.StartXGrabber(keys)

	for {
		keycode := <-keys

		if key, ok := xkg.KeyMap[keycode]; ok {
			fmt.Printf("[%s]", key)
		}
	}
}

License

The license of the project is The MIT License (MIT).

About

User level X Keyboard Grabber

https://godoc.org/github.com/go-xkg/xkg

License:MIT License


Languages

Language:Go 100.0%