summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGregor Kleen <gkleen@yggdrasil.li>2015-07-03 22:26:47 +0200
committerGregor Kleen <gkleen@yggdrasil.li>2015-07-03 22:26:47 +0200
commit765d3ea5026d912f4f2679fb061279a9a3a4f88e (patch)
treef6fceac1da6459867f0fe4e32b36b51413e55edf
parentdc2a9274d9538c7db0aa96a1a58e1c66d11374e5 (diff)
downloaddotfiles-765d3ea5026d912f4f2679fb061279a9a3a4f88e.tar
dotfiles-765d3ea5026d912f4f2679fb061279a9a3a4f88e.tar.gz
dotfiles-765d3ea5026d912f4f2679fb061279a9a3a4f88e.tar.bz2
dotfiles-765d3ea5026d912f4f2679fb061279a9a3a4f88e.tar.xz
dotfiles-765d3ea5026d912f4f2679fb061279a9a3a4f88e.zip
bugfixes to xmonad.hs
-rw-r--r--.xmonad/xmonad.hs4
1 files changed, 2 insertions, 2 deletions
diff --git a/.xmonad/xmonad.hs b/.xmonad/xmonad.hs
index c7402a6..dc2b426 100644
--- a/.xmonad/xmonad.hs
+++ b/.xmonad/xmonad.hs
@@ -40,6 +40,8 @@ import XMonad.Actions.Warp
40 40
41import XMonad.Layout.IM 41import XMonad.Layout.IM
42 42
43import XMonad.Prompt.Shell
44
43wsp :: Int -> WorkspaceId 45wsp :: Int -> WorkspaceId
44wsp i = case Map.lookup i workspaceNames of 46wsp i = case Map.lookup i workspaceNames of
45 Just str -> (show i) ++ " " ++ str 47 Just str -> (show i) ++ " " ++ str
@@ -154,8 +156,6 @@ myKeys' conf = Map.fromList $
154 -- Resize viewed windows to the correct size 156 -- Resize viewed windows to the correct size
155 -- , ((modm, xK_r ), refresh) 157 -- , ((modm, xK_r ), refresh)
156 158
157 , ((modm, xK_BackSpace ), focusUrgent)
158
159 -- Move focus to the next window 159 -- Move focus to the next window
160 , ((modm, xK_t ), windows W.focusDown) 160 , ((modm, xK_t ), windows W.focusDown)
161 161