diff options
author | Don Stewart <dons@cse.unsw.edu.au> | 2007-03-08 03:19:01 +0100 |
---|---|---|
committer | Don Stewart <dons@cse.unsw.edu.au> | 2007-03-08 03:19:01 +0100 |
commit | 5f8077ae9e06085d2d31abf1f7e1f03c23341b1c (patch) | |
tree | b42debbff0e11760313ec6d78507bb5e07eeb348 | |
parent | b3a32e175ce705342b36d5081de17148a8fc6238 (diff) | |
download | xmonad-5f8077ae9e06085d2d31abf1f7e1f03c23341b1c.tar.gz xmonad-5f8077ae9e06085d2d31abf1f7e1f03c23341b1c.tar.xz xmonad-5f8077ae9e06085d2d31abf1f7e1f03c23341b1c.zip |
cleanup only
darcs-hash:20070308021901-9c5c1-35cd948050a53029805dfa1d699f7bb8c7df40de.gz
-rw-r--r-- | Main.hs | 8 |
1 files changed, 4 insertions, 4 deletions
@@ -127,6 +127,10 @@ handle e = trace (eventName e) -- return () -- --------------------------------------------------------------------- -- Managing windows +-- | spawn. Launch an external application +spawn :: String -> W () +spawn = io_ . runCommand + -- -- | refresh. Refresh the currently focused window. Resizes to full -- screen and raises the window. @@ -178,10 +182,6 @@ unmanage w = do focus :: Int -> W () focus n = withWindows (rotate n) --- | spawn. Launch an external application -spawn :: String -> W () -spawn = io_ . runCommand - -- | Kill the currently focused client kill :: W () kill = do |