mirror of
https://github.com/xmonad/xmonad-contrib.git
synced 2025-05-19 11:30:22 -07:00
This is designed for layouts like full and tabbed, where the red square around the screen actually conveys no information (except for weird windows that use the shape extension or something, so that more than one window is actually visible). Save some real estate at no cost.
35 lines
1.2 KiB
Haskell
35 lines
1.2 KiB
Haskell
-- Maintainer: Spencer Janssen <sjanssen@cse.unl.edu>
|
|
--
|
|
-- This is an artificial dependency on all the XMonadContrib.* modules. It is
|
|
-- intended to help xmonad hackers ensure that contrib modules build after API
|
|
-- changes.
|
|
--
|
|
-- Please add new modules to this list (in alphabetical order).
|
|
|
|
module XMonadContrib.MetaModule () where
|
|
|
|
import XMonadContrib.Anneal ()
|
|
-- commented because of conflicts with 6.6's instances import XMonadContrib.BackCompat ()
|
|
import XMonadContrib.Circle ()
|
|
-- TODO commented because it requires hs-boot modifications import XMonadContrib.Commands ()
|
|
import XMonadContrib.Decoration ()
|
|
import XMonadContrib.Dmenu ()
|
|
import XMonadContrib.DwmPromote ()
|
|
import XMonadContrib.DynamicLog ()
|
|
import XMonadContrib.Dzen ()
|
|
import XMonadContrib.FindEmptyWorkspace ()
|
|
import XMonadContrib.GreedyView ()
|
|
import XMonadContrib.HintedTile ()
|
|
import XMonadContrib.LayoutHints ()
|
|
import XMonadContrib.Mosaic ()
|
|
import XMonadContrib.NamedWindows ()
|
|
import XMonadContrib.NoBorders ()
|
|
import XMonadContrib.RotView ()
|
|
import XMonadContrib.SimpleDate ()
|
|
import XMonadContrib.Spiral ()
|
|
import XMonadContrib.Submap ()
|
|
import XMonadContrib.Tabbed ()
|
|
import XMonadContrib.TwoPane ()
|
|
import XMonadContrib.Warp ()
|
|
import XMonadContrib.WorkspaceDir ()
|