diff options
-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 | ||