mirror of
https://github.com/xmonad/xmonad-contrib.git
synced 2025-05-19 11:30:22 -07:00
Merge pull request #679 from slotThe/deprecate-modules
Deprecate user and abandoned modules
This commit is contained in:
commit
f90e76248f
@ -10,6 +10,13 @@
|
||||
now return a `Parser` (from `XMonad.Util.Parser`) instead of a
|
||||
`ReadP`.
|
||||
|
||||
* `XMonad.Config.{Arossato,Bluetile,Dmwit,Droundy,Monad,Prime,Saegesser,Sjanssen}`
|
||||
|
||||
- Deprecated all of these modules. The user-specific configuration
|
||||
modules may still be found [on the website].
|
||||
|
||||
[on the website]: https://xmonad.org/configurations.html
|
||||
|
||||
### New Modules
|
||||
|
||||
* `XMonad.Layout.CenteredIfSingle`
|
||||
|
@ -16,6 +16,7 @@
|
||||
------------------------------------------------------------------------
|
||||
|
||||
module XMonad.Config.Arossato
|
||||
{-# DEPRECATED "This module contains a personal configuration, to be removed from xmonad-contrib. If you use this module, please copy the relevant parts to your configuration or obtain a copy of it on https://xmonad.org/configurations.html and include it as a local module." #-}
|
||||
( -- * Usage
|
||||
-- $usage
|
||||
arossatoConfig
|
||||
|
@ -20,7 +20,7 @@
|
||||
--
|
||||
-----------------------------------------------------------------------------
|
||||
|
||||
module XMonad.Config.Bluetile (
|
||||
module XMonad.Config.Bluetile {-# DEPRECATED "This module contains a personal configuration, to be removed from xmonad-contrib. If you use this module, please copy the relevant parts to your configuration or obtain a copy of it on https://xmonad.org/configurations.html and include it as a local module." #-} (
|
||||
-- * Usage
|
||||
-- $usage
|
||||
bluetileConfig
|
||||
|
@ -7,7 +7,7 @@
|
||||
-- Description : Daniel Wagner's xmonad configuration.
|
||||
--
|
||||
------------------------------------------------------------------------
|
||||
module XMonad.Config.Dmwit where
|
||||
module XMonad.Config.Dmwit {-# DEPRECATED "This module contains a personal configuration, to be removed from xmonad-contrib. If you use this module, please copy the relevant parts to your configuration or obtain a copy of it on https://xmonad.org/configurations.html and include it as a local module." #-} where
|
||||
|
||||
-- system imports
|
||||
import Control.Monad.Trans
|
||||
|
@ -8,7 +8,7 @@
|
||||
-- License : BSD3-style (see LICENSE)
|
||||
--
|
||||
------------------------------------------------------------------------
|
||||
module XMonad.Config.Droundy ( config, mytab ) where
|
||||
module XMonad.Config.Droundy {-# DEPRECATED "This module contains a personal configuration, to be removed from xmonad-contrib. If you use this module, please copy the relevant parts to your configuration or obtain a copy of it on https://xmonad.org/configurations.html and include it as a local module." #-} ( config, mytab ) where
|
||||
|
||||
import XMonad hiding (keys, config)
|
||||
import qualified XMonad (keys)
|
||||
|
@ -15,7 +15,7 @@ ideas:
|
||||
"only once" features like avoidStruts, ewmhDesktops
|
||||
-}
|
||||
|
||||
module XMonad.Config.Monad where
|
||||
module XMonad.Config.Monad {-# DEPRECATED "This module does not work." #-} where
|
||||
|
||||
import XMonad hiding (terminal, keys)
|
||||
import qualified XMonad as X
|
||||
|
@ -23,7 +23,7 @@
|
||||
--
|
||||
-----------------------------------------------------------------------------
|
||||
|
||||
module XMonad.Config.Prime (
|
||||
module XMonad.Config.Prime {-# DEPRECATED "This module is a perpetual draft and will therefore be removed from xmonad-contrib in the near future." #-} (
|
||||
-- Note: The identifiers here are listed in the order that makes the most sense
|
||||
-- for a user, while the definitions below are listed in the order that makes
|
||||
-- the most sense for a developer.
|
||||
|
@ -6,6 +6,8 @@
|
||||
-- A mostly striped down configuration that demonstrates spawnOnOnce
|
||||
--
|
||||
---------------------------------------------------------------------
|
||||
module XMonad.Config.Saegesser {-# DEPRECATED "This module contains a personal configuration, to be removed from xmonad-contrib. If you use this module, please copy the relevant parts to your configuration or obtain a copy of it on https://xmonad.org/configurations.html and include it as a local module." #-} where
|
||||
|
||||
import System.IO
|
||||
|
||||
import XMonad
|
||||
|
@ -5,7 +5,7 @@
|
||||
-- Description : Spencer Janssen's xmonad config.
|
||||
--
|
||||
------------------------------------------------------------------------
|
||||
module XMonad.Config.Sjanssen (sjanssenConfig) where
|
||||
module XMonad.Config.Sjanssen {-# DEPRECATED "This module contains a personal configuration, to be removed from xmonad-contrib. If you use this module, please copy the relevant parts to your configuration or obtain a copy of it on https://xmonad.org/configurations.html and include it as a local module." #-} (sjanssenConfig) where
|
||||
|
||||
import XMonad hiding (Tall(..))
|
||||
import qualified XMonad.StackSet as W
|
||||
|
@ -78,7 +78,7 @@ import qualified XMonad.StackSet as W
|
||||
-- screen into a physical workspace name.
|
||||
--
|
||||
-- A complete example abusing many of the functions below is available in the
|
||||
-- "XMonad.Config.Dmwit" module.
|
||||
-- <https://xmonad.org/configurations.html XMonad.Config.Dmwit> configuration.
|
||||
|
||||
type VirtualWorkspace = WorkspaceId
|
||||
type PhysicalWorkspace = WorkspaceId
|
||||
|
Loading…
x
Reference in New Issue
Block a user