diff options
author | David Roundy <droundy@darcs.net> | 2008-03-22 16:35:46 +0100 |
---|---|---|
committer | David Roundy <droundy@darcs.net> | 2008-03-22 16:35:46 +0100 |
commit | 902cace70e1dea2fea51a02c910d88c5ca5d3fb8 (patch) | |
tree | 8d4da2de3d323e2e1efe5e68006c3e785eb767bf /XMonad/Config | |
parent | 5c93a91c35c76dd1b9ebcbe290b6bcd3c8617877 (diff) | |
download | XMonadContrib-902cace70e1dea2fea51a02c910d88c5ca5d3fb8.tar.gz XMonadContrib-902cace70e1dea2fea51a02c910d88c5ca5d3fb8.tar.xz XMonadContrib-902cace70e1dea2fea51a02c910d88c5ca5d3fb8.zip |
cut Anneal and Mosaic.
darcs-hash:20080322153546-72aca-fe4f9a048f5a1127b0b2d7e7d382550c134b60af.gz
Diffstat (limited to 'XMonad/Config')
-rw-r--r-- | XMonad/Config/Droundy.hs | 10 |
1 files changed, 0 insertions, 10 deletions
diff --git a/XMonad/Config/Droundy.hs b/XMonad/Config/Droundy.hs index 693306e..3429243 100644 --- a/XMonad/Config/Droundy.hs +++ b/XMonad/Config/Droundy.hs @@ -23,7 +23,6 @@ import System.Exit import XMonad.Layout.Tabbed import XMonad.Layout.Combo -import XMonad.Layout.Mosaic import XMonad.Layout.Named import XMonad.Layout.LayoutCombinators import XMonad.Layout.Simplest @@ -116,15 +115,6 @@ keys x = M.fromList $ , ((modMask x .|. controlMask .|. shiftMask, xK_space), toggleScratchWorkspace (Simplest */* Simplest) ) --- keybindings for Mosaic: - , ((controlMask .|. modMask x .|. shiftMask, xK_h), withFocused (sendMessage . tallWindow)) - , ((controlMask .|. modMask x .|. shiftMask, xK_l), withFocused (sendMessage . wideWindow)) - , ((modMask x .|. shiftMask, xK_h ), withFocused (sendMessage . shrinkWindow)) - , ((modMask x .|. shiftMask, xK_l ), withFocused (sendMessage . expandWindow)) - , ((modMask x .|. shiftMask, xK_s ), withFocused (sendMessage . squareWindow)) - , ((modMask x .|. shiftMask, xK_o ), withFocused (sendMessage . myclearWindow)) - , ((controlMask .|. modMask x .|. shiftMask, xK_o ), withFocused (sendMessage . flexibleWindow)) - ] ++ |