xmonad-contrib-0.14: Third party extensions for xmonad

Copyright(c) Yorick Laupa <yo.eight@gmail.com>
LicenseBSD
MaintainerYorick Laupa <yo.eight@gmail.com>
Stabilitystable
Portabilityunportable
Safe HaskellNone
LanguageHaskell98

XMonad.Config.Bepo

Contents

Description

This module fixes some of the keybindings for the francophone among you who use a BEPO keyboard layout. Based on XMonad.Config.Azerty

Synopsis

Usage

To use this module, start with the following ~/.xmonad/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 }