aboutsummaryrefslogtreecommitdiffstats
path: root/XMonad/Doc
diff options
context:
space:
mode:
authorAndrea Rossato <andrea.rossato@unibz.it>2007-11-24 15:11:06 +0100
committerAndrea Rossato <andrea.rossato@unibz.it>2007-11-24 15:11:06 +0100
commit98add0e9bd96eab019bc2ec1401ec6a9c425266c (patch)
tree20503a0a69ea1fcf16d4beb99e0b25104218fe2a /XMonad/Doc
parent779a0e8e9c481f14c42dda1a0cefcd2d91e8797b (diff)
downloadXMonadContrib-98add0e9bd96eab019bc2ec1401ec6a9c425266c.tar.gz
XMonadContrib-98add0e9bd96eab019bc2ec1401ec6a9c425266c.tar.xz
XMonadContrib-98add0e9bd96eab019bc2ec1401ec6a9c425266c.zip
Extending: some more stuff
darcs-hash:20071124141106-32816-3a5f1b3316de868c7b14e15aed2c1bb1260a77d9.gz
Diffstat (limited to 'XMonad/Doc')
-rw-r--r--XMonad/Doc/Extending.hs32
1 files changed, 27 insertions, 5 deletions
diff --git a/XMonad/Doc/Extending.hs b/XMonad/Doc/Extending.hs
index b1e3ba9..3df2427 100644
--- a/XMonad/Doc/Extending.hs
+++ b/XMonad/Doc/Extending.hs
@@ -729,7 +729,7 @@ and put them in the workspace named \"web\", with
'XMonad.ManageHook.doF' and 'XMonad.StackSet.shift'. (@concat@ simply
combines these three lists into a single list.)
-Each 'XMonad.Config.ManageHook' has the form
+Each 'XMonad.Config.ManageHook' has the form:
> property =? match --> action
@@ -749,15 +749,17 @@ Where @property@ can be:
at a prompt, then click on the window whose resource class you want to
know.)
-@match@ is string that will match the property value;
+@match@ is the string that will match the property value (for instance
+the one you retrieved with @xprop@).
-and @action@ can be:
+An @action@ can be:
* 'XMonad.ManageHook.doFloat': to place the window in the float layer;
* 'XMonad.ManageHook.doIgnore': to ignore the window;
-* 'XMonad.ManageHook.doF': to execute a function with the window.
+* 'XMonad.ManageHook.doF': to execute a function with the window as
+ argument.
For example, suppose we want to add a 'XMonad.Config.manageHook' to
float RealPlayer, which usually has a 'XMonad.ManageHook.resource'
@@ -774,7 +776,7 @@ Then we create our own 'XMonad.Config.manageHook':
We can now use the 'XMonad.ManageHook.<+>' combinator to add our
'XMonad.Config.manageHook' to the default one:
-> newManageHook = myManageHook <+> (manageHook defaultConfig)
+> newManageHook = myManageHook <+> manageHook defaultConfig
(Of course, if we wanted to completely replace the default
'XMonad.Config.manageHook', this step would not be necessary.) Now,
@@ -789,6 +791,26 @@ of the corresponding actions will be run (in the order in which they
are defined). This is a change from versions before 0.5, when only
the first rule that matched was run.
+Obviously we may be willing to add more then one
+'XMonad.Config.manageHook'. In this case we can use a list of hooks,
+compose them all with 'XMonad.ManageHook.composeAll', and add the
+composed to the default one.
+
+For instance, if we want RealPlayer to float and thunderbird always
+opened in the workspace named "mail" we can do like this:
+
+> myManageHook = composeAll [ resource =? "realplay.bin" --> doFloat
+> , resource =? "thunderbird-bin" --> doF (W.shift "mail")
+> ]
+
+Remember to import the module that defines the 'XMonad.StackSet.shift'
+function, "XMonad.StackSet", like this:
+
+> import qualified XMonad.StackSet as W
+
+And then we can add @myManageHook@ to the default one to create
+@newManageHook@ as we did in the previous example.
+
-}
{- $logHook