diff options
author | Gregor Kleen <gkleen@yggdrasil.li> | 2015-07-03 22:26:47 +0200 |
---|---|---|
committer | Gregor Kleen <gkleen@yggdrasil.li> | 2015-07-03 22:26:47 +0200 |
commit | 765d3ea5026d912f4f2679fb061279a9a3a4f88e (patch) | |
tree | f6fceac1da6459867f0fe4e32b36b51413e55edf | |
parent | dc2a9274d9538c7db0aa96a1a58e1c66d11374e5 (diff) | |
download | dotfiles-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.hs | 4 |
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 | ||
41 | import XMonad.Layout.IM | 41 | import XMonad.Layout.IM |
42 | 42 | ||
43 | import XMonad.Prompt.Shell | ||
44 | |||
43 | wsp :: Int -> WorkspaceId | 45 | wsp :: Int -> WorkspaceId |
44 | wsp i = case Map.lookup i workspaceNames of | 46 | wsp 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 | ||