EZConfig: Learn about XF86Bluetooth

This commit is contained in:
Robbie Harwood
2020-07-22 15:42:56 -04:00
parent 3dc49721b6
commit 04ccc4d972
2 changed files with 7 additions and 1 deletions

View File

@@ -130,6 +130,10 @@
- Export `HiddenWindows` type constructor.
- Export `popHiddenWindow` function restoring a specific window.
* `XMonad.Util.EZConfig`
- Added support for XF86Bluetooth.
## 0.16
### Breaking Changes

View File

@@ -356,6 +356,7 @@ removeMouseBindings conf mouseBindingList =
-- > <XF86_ClearGrab>
-- > <XF86_Next_VMode>
-- > <XF86_Prev_VMode>
-- > <XF86Bluetooth>
mkKeymap :: XConfig l -> [(String, X ())] -> M.Map (KeyMask, KeySym) (X ())
mkKeymap c = M.fromList . mkSubmaps . readKeymap c
@@ -677,7 +678,8 @@ multimediaKeys = filter ((/= noSymbol) . snd) . map (id &&& stringToKeysym) $
, "XF86_Ungrab"
, "XF86_ClearGrab"
, "XF86_Next_VMode"
, "XF86_Prev_VMode" ]
, "XF86_Prev_VMode"
, "XF86Bluetooth" ]
-- | Given a configuration record and a list of (key sequence
-- description, action) pairs, check the key sequence descriptions