Hi, while configuring qtile for my thinkpad, i missed a key. Please apply the patch.
(sorry, have to repair my github account before sending pull requests) thanks, Björn -- You received this message because you are subscribed to the Google Groups "qtile-dev" group. To unsubscribe from this group and stop receiving emails from it, send an email to [email protected]. For more options, visit https://groups.google.com/d/optout.
>From 70f1f3ce39405adebf07afbf475cd445c799df2b Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Bj=C3=B6rn=20L=C3=A4ssig?= <[email protected]> Date: Sun, 19 Oct 2014 21:39:35 +0200 Subject: [PATCH] add Key for muting Mic * this exists on most IBM/Lenovo Thinkpads dump of `xev`: KeyPress event, serial 34, synthetic NO, window 0x2e00001, root 0x97, subw 0x0, time 306796922, (668,272), root:(670,293), state 0x0, keycode 198 (keysym 0x1008ffb2, XF86AudioMicMute), same_screen YES, XLookupString gives 0 bytes: XmbLookupString gives 0 bytes: XFilterEvent returns: False KeyRelease event, serial 34, synthetic NO, window 0x2e00001, root 0x97, subw 0x0, time 306796922, (668,272), root:(670,293), state 0x0, keycode 198 (keysym 0x1008ffb2, XF86AudioMicMute), same_screen YES, XLookupString gives 0 bytes: XFilterEvent returns: False --- libqtile/xkeysyms.py | 1 + 1 file changed, 1 insertion(+) diff --git a/libqtile/xkeysyms.py b/libqtile/xkeysyms.py index 8431b7a..439686f 100644 --- a/libqtile/xkeysyms.py +++ b/libqtile/xkeysyms.py @@ -157,6 +157,7 @@ keysyms = { 'XF86TouchpadToggle': 0x1008FFA9, 'XF86TouchpadOn': 0x1008FFB0, 'XF86TouchpadOff': 0x1008FFB1, + 'XF86AudioMicMute': 0x1008FFB2, 'XF86Switch_VT_1': 0x1008FE01, 'XF86Switch_VT_2': 0x1008FE02, 'XF86Switch_VT_3': 0x1008FE03, -- 2.1.1
