diff options
author | Brent Yorgey <byorgey@cis.upenn.edu> | 2009-02-22 00:08:50 +0100 |
---|---|---|
committer | Brent Yorgey <byorgey@cis.upenn.edu> | 2009-02-22 00:08:50 +0100 |
commit | 6f87f2b2e57fc6cc12b8764e461d2f7ea7640db1 (patch) | |
tree | b0ffe968b2df9f70c47885fba1407199849848f8 | |
parent | ff9449a55e44962320aed5462b8d3a7a5e84c564 (diff) | |
download | XMonadContrib-6f87f2b2e57fc6cc12b8764e461d2f7ea7640db1.tar.gz XMonadContrib-6f87f2b2e57fc6cc12b8764e461d2f7ea7640db1.tar.xz XMonadContrib-6f87f2b2e57fc6cc12b8764e461d2f7ea7640db1.zip |
add some boilerplate comments at the top of IndependentScreens
darcs-hash:20090221230850-1e371-e17b3679262ae93783377c9e6681d829b6521001.gz
-rw-r--r-- | XMonad/Layout/IndependentScreens.hs | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/XMonad/Layout/IndependentScreens.hs b/XMonad/Layout/IndependentScreens.hs index fe86a40..d5a1f86 100644 --- a/XMonad/Layout/IndependentScreens.hs +++ b/XMonad/Layout/IndependentScreens.hs @@ -1,3 +1,18 @@ +----------------------------------------------------------------------------- +-- | +-- Module : XMonad.Layout.IndependentScreens +-- Copyright : (c) 2009 Daniel Wagner +-- License : BSD3 +-- +-- Maintainer : <daniel@wagner-home.com> +-- Stability : unstable +-- Portability : unportable +-- +-- Utility functions for simulating independent sets of workspaces on +-- each screen (like dwm's workspace model), using internal tags to +-- distinguish workspaces associated with each screen. +----------------------------------------------------------------------------- + module IndependentScreens where marshall (S sc) ws = show sc ++ '_':ws |