HotKey Daemon, simple hotkey daemon that woks using the evdev interface
this allows for a less error-prone parsing method (as wordexp(3) is in libc) and enables for shell-like word expansion, refer to the man page for more info about wordexp(3) |
||
---|---|---|
tests | ||
.gitignore | ||
hkd.c | ||
makefile | ||
README.md | ||
template.conf |
hkd: hotkey deamon
hkd allows to define system-wide hotkeys, independently of graphical environment, this means, that hotkeys will work in x11 waylnad and even tty, as long as the actions specified can run you are good to go.
Compatibility
hkd only works in linux as it uses the linux-specific epoll and inotify apis
Compiling
hkd doesn't require any libraries and has no dependency other than a standard C
library, musl
should work.
run make
to compile, make clean
to remove the mess and make debug
to compile
a debug binary to use with gdb.