Copyright | (c) Yorick Laupa <yo.eight@gmail.com> |
---|---|
License | BSD |
Maintainer | Yorick Laupa <yo.eight@gmail.com> |
Stability | stable |
Portability | unportable |
Safe Haskell | Safe-Inferred |
Language | Haskell2010 |
This module fixes some of the keybindings for the francophone among you who use a BEPO keyboard layout. Based on XMonad.Config.Azerty
Usage
To use this module, start with the following xmonad.hs
:
import XMonad import XMonad.Config.Bepo main = xmonad bepoConfig
If you prefer, an bepoKeys function is provided which you can use as so:
import qualified Data.Map as M main = xmonad someConfig { keys = \c -> bepoKeys c `M.union` keys someConfig c }