I have a specific problem with keyboard shortcuts and haven't gotten a solution for it so far, so now i need to know which module within a Linux distribution is responsible for handling keyboard shortcuts.
By handling keyboard shortcuts, I mean, listening to the key pressing\releasing events.
xmodmap
is an application, as would be your window manager. – Thomas Dickey Sep 04 '16 at 10:53wmctrl -m
that shows the window manager on LMDE (Linux mint, Debian edition) and Linux mint Ubuntu edition and they both had the same output. Yet both handle keyboard shortcuts differently. Debian first a keyboard shortcut on-press, while Ubuntu handles it on-release.Probably the window manager isn't the responsible module ?
– Muhammad Gelbana Sep 04 '16 at 21:19wmctrl -m
only shows a small part of the window manager (see EWMH, which is whatwmctrl
deals with). – Thomas Dickey Sep 05 '16 at 00:11