Reputation: 113
I am trying to configure a hotkey with xbindkeys. Is it possible to reference the pressed KeyValue in the hotkey-command? Like:
# send hotkeyvalue to pipe
"echo $pressedkey >> /tmp/somepipe"
m:0x0 + c:75
F9
Q: What is interpreting the command?
Q: And what variables are available?
Upvotes: 1
Views: 468
Reputation: 3433
There is no way to detect current key press.
It is simple execute your command via execlp
You can view code in github: https://github.com/IonicaBizau/xbindkeys/blob/839da209f2ef8f43e8dc60f28aa7622f386bd0d6/keys.c#L428
Upvotes: 1