Add XMonad.Util.SpawnOnce

This commit is contained in:
Spencer Janssen 2009-11-07 17:38:20 +00:00
parent 86f6b327ae
commit df7ac47317
2 changed files with 40 additions and 0 deletions

39
XMonad/Util/SpawnOnce.hs Normal file
View File

@ -0,0 +1,39 @@
{-# LANGUAGE DeriveDataTypeable #-}
-----------------------------------------------------------------------------
-- |
-- Module : XMonad.Util.ExtensibleState
-- Copyright : (c) Spencer Janssen 2009
-- License : BSD3-style (see LICENSE)
--
-- Maintainer : spencerjanssen@gmail.com
-- Stability : unstable
-- Portability : not portable
--
-- A module for spawning a command once, and only once. Useful to start
-- status bars and make session settings inside startupHook.
--
-----------------------------------------------------------------------------
module XMonad.Util.SpawnOnce (spawnOnce) where
import XMonad
import Data.Set as Set
import XMonad.Util.ExtensibleState
import Control.Monad
data SpawnOnce = SpawnOnce { unspawnOnce :: (Set String) }
deriving (Read, Show, Typeable)
instance ExtensionClass SpawnOnce where
initialValue = SpawnOnce $ Set.empty
extensionType = PersistentExtension
-- | The first time 'spawnOnce' is executed on a particular command, that
-- command is executed. Subsequent invocations for a command do nothing.
spawnOnce :: String -> X ()
spawnOnce xs = do
b <- fmap (Set.member xs . unspawnOnce) $ getState
when (not b) $ do
spawn xs
modifyState (SpawnOnce . Set.insert xs . unspawnOnce)

View File

@ -232,6 +232,7 @@ library
XMonad.Util.StringProp XMonad.Util.StringProp
XMonad.Util.Run XMonad.Util.Run
XMonad.Util.Scratchpad XMonad.Util.Scratchpad
XMonad.Util.SpawnOnce
XMonad.Util.Themes XMonad.Util.Themes
XMonad.Util.Timer XMonad.Util.Timer
XMonad.Util.Types XMonad.Util.Types