aboutsummaryrefslogtreecommitdiffstats
path: root/XMonad/Layout/OnHost.hs
diff options
context:
space:
mode:
Diffstat (limited to 'XMonad/Layout/OnHost.hs')
-rw-r--r--XMonad/Layout/OnHost.hs12
1 files changed, 6 insertions, 6 deletions
diff --git a/XMonad/Layout/OnHost.hs b/XMonad/Layout/OnHost.hs
index f69bbb3..bb4976f 100644
--- a/XMonad/Layout/OnHost.hs
+++ b/XMonad/Layout/OnHost.hs
@@ -12,7 +12,7 @@
--
-- Configure layouts on a per-host basis: use layouts and apply
-- layout modifiers selectively, depending on the host. Heavily based on
--- XMonad.Layout.PerWorkspace by Brent Yorgey.
+-- "XMonad.Layout.PerWorkspace" by Brent Yorgey.
-----------------------------------------------------------------------------
module XMonad.Layout.OnHost (-- * Usage
@@ -37,12 +37,12 @@ import System.Posix.Env (getEnv)
--
-- > import XMonad.Layout.OnHost
--
--- and modifying your layoutHook as follows (for example):
+-- and modifying your 'layoutHook' as follows (for example):
--
--- > layoutHook = modHost "baz" m1 $ -- apply layout modifier m1 to all layouts on host "baz"
--- > onHost "foo" l1 $ -- layout l1 will be used on host "foo".
--- > onHosts ["bar","quux"] l2 $ -- layout l2 will be used on hosts "bar" and "quux".
--- > l3 -- layout l3 will be used on all other hosts.
+-- > layoutHook = modHost "baz" m1 $ -- apply layout modifier m1 to all layouts on host "baz"
+-- > onHost "foo" l1 $ -- layout l1 will be used on host "foo".
+-- > onHosts ["bar","quux"] l2 $ -- layout l2 will be used on hosts "bar" and "quux".
+-- > l3 -- layout l3 will be used on all other hosts.
--
-- Note that @l1@, @l2@, and @l3@ can be arbitrarily complicated
-- layouts, e.g. @(Full ||| smartBorders $ tabbed shrinkText