diff options
author | gwern0 <gwern0@gmail.com> | 2012-01-16 23:42:44 +0100 |
---|---|---|
committer | gwern0 <gwern0@gmail.com> | 2012-01-16 23:42:44 +0100 |
commit | f3fbc9bac8c7b8b489f576dedcae154b488a1f4b (patch) | |
tree | 52bc397c5c1a44ed6ec6f1e1bf612eaa38db8251 /XMonad/Actions | |
parent | b516dc1136a8f6cc49d7f23fa96189d740b2ab51 (diff) | |
download | XMonadContrib-f3fbc9bac8c7b8b489f576dedcae154b488a1f4b.tar.gz XMonadContrib-f3fbc9bac8c7b8b489f576dedcae154b488a1f4b.tar.xz XMonadContrib-f3fbc9bac8c7b8b489f576dedcae154b488a1f4b.zip |
Actions.WindowGo: typo fix - trim 's' per cub.uanic https://code.google.com/p/xmonad/issues/detail?idI1
Ignore-this: fb1d55c1b4609069c55f13523c091260
darcs-hash:20120116224244-f7719-fef0b05cb8879cba9b2087282291f55e6954d644.gz
Diffstat (limited to 'XMonad/Actions')
-rw-r--r-- | XMonad/Actions/WindowGo.hs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/XMonad/Actions/WindowGo.hs b/XMonad/Actions/WindowGo.hs index 6d8a917..46b651a 100644 --- a/XMonad/Actions/WindowGo.hs +++ b/XMonad/Actions/WindowGo.hs @@ -114,7 +114,7 @@ raise = raiseMaybe $ return () Mutt which you just did for Firefox - but Mutt runs inside a terminal window? No problem: you search for a terminal window calling itself \"mutt\", and if there isn't you run a terminal with a command to run Mutt! Here's an example - (borrowing 'runInTerm' from "XMonad.Utils.Run"): + (borrowing 'runInTerm' from "XMonad.Util.Run"): > , ((modm, xK_m), raiseMaybe (runInTerm "-title mutt" "mutt") (title =? "mutt")) -} |