From 77e3876d076301c05fbe0f994d1969fd140635b6 Mon Sep 17 00:00:00 2001 From: Spencer Janssen Date: Sat, 13 Oct 2007 20:33:40 +0000 Subject: [PATCH] Better comment for the default manageHook --- Config.hs | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/Config.hs b/Config.hs index 238a51c..0c83e72 100644 --- a/Config.hs +++ b/Config.hs @@ -79,7 +79,8 @@ manageHook w _ _ c | c `elem` floats = fmap (W.float w . snd) (floatLocation w) manageHook w _ n _ | n `elem` ignore = reveal w >> return (W.delete w) where ignore = ["gnome-panel", "desktop_window", "kicker", "kdesktop"] --- The default rule, do not edit this line. +-- The default rule: return the WindowSet unmodified. You typically do not +-- want to modify this line. manageHook _ _ _ _ = return id -- |