Skip to content

Commit

Permalink
add XF86WLAN special key
Browse files Browse the repository at this point in the history
  • Loading branch information
geekosaur committed Jan 12, 2025
1 parent de01015 commit bc0e3aa
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 0 deletions.
4 changes: 4 additions & 0 deletions CHANGES.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,10 @@

### Bug Fixes and Minor Changes

* `XMonad.Util.EZConfig`

- Added `XF86WLAN` to the list of supported special keys.

* `XMonad.Actions.DynamicProjects`

- No longer autodelete projects when `switchProject` is called from
Expand Down
1 change: 1 addition & 0 deletions XMonad/Prelude.hs
Original file line number Diff line number Diff line change
Expand Up @@ -472,6 +472,7 @@ multimediaKeys = filter ((/= noSymbol) . snd) . map (id &&& stringToKeysym) $
, "XF86_Next_VMode"
, "XF86_Prev_VMode"
, "XF86Bluetooth"
, "XF86WLAN"
]

-- | The specialized 'W.Screen' derived from 'WindowSet'.
Expand Down
1 change: 1 addition & 0 deletions XMonad/Util/EZConfig.hs
Original file line number Diff line number Diff line change
Expand Up @@ -419,6 +419,7 @@ infixl 4 `removeMouseBindings`
-- > <XF86_Next_VMode>
-- > <XF86_Prev_VMode>
-- > <XF86Bluetooth>
-- > <XF86WLAN>

mkKeymap :: XConfig l -> [(String, X ())] -> M.Map (KeyMask, KeySym) (X ())
mkKeymap c = M.fromList . mkSubmaps . readKeymap c
Expand Down

0 comments on commit bc0e3aa

Please sign in to comment.