xmonad-contrib-0.17.0.9: Community-maintained extensions for xmonad
Copyright(c) Yorick Laupa <yo.eight@gmail.com>
LicenseBSD
MaintainerYorick Laupa <yo.eight@gmail.com>
Stabilitystable
Portabilityunportable
Safe HaskellSafe-Inferred
LanguageHaskell2010

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 }

bepoKeys :: forall {l :: Type -> Type}. XConfig l -> Map (KeyMask, KeySym) (X ()) Source #