mirror of
https://github.com/xmonad/xmonad-contrib.git
synced 2025-07-31 04:01:51 -07:00
62 lines
2.2 KiB
Haskell
62 lines
2.2 KiB
Haskell
-----------------------------------------------------------------------------
|
|
-- |
|
|
-- Module : XMonadContrib.Dzen
|
|
-- Copyright : (c) glasser@mit.edu
|
|
-- License : BSD
|
|
--
|
|
-- Maintainer : glasser@mit.edu
|
|
-- Stability : unstable
|
|
-- Portability : unportable
|
|
--
|
|
-- Handy wrapper for dzen. Requires dzen >= 0.2.4.
|
|
--
|
|
-----------------------------------------------------------------------------
|
|
|
|
module XMonadContrib.Dzen (dzen, dzenScreen, dzenUrgencyHook, seconds) where
|
|
|
|
import Control.Monad (when)
|
|
import Control.Monad.State (gets)
|
|
import qualified Data.Set as S
|
|
import Graphics.X11.Types (Window)
|
|
|
|
import qualified StackSet as W
|
|
import XMonad
|
|
|
|
import XMonadContrib.NamedWindows (getName)
|
|
import XMonadContrib.Run (runProcessWithInputAndWait, seconds)
|
|
|
|
toXineramaArg :: ScreenId -> String
|
|
toXineramaArg n = show ( ((fromIntegral n)+1)::Int )
|
|
|
|
-- | @dzen str timeout@ pipes @str@ to dzen2 for @timeout@ microseconds.
|
|
-- Example usage:
|
|
-- > dzen "Hi, mom!" (5 `seconds`)
|
|
dzen :: String -> Int -> X ()
|
|
dzen str timeout = dzenWithArgs str [] timeout
|
|
|
|
-- | @dzenScreen sc str timeout@ pipes @str@ to dzen2 for @timeout@ microseconds, and on screen @sc@.
|
|
-- Requires dzen to be compiled with Xinerama support.
|
|
dzenScreen :: ScreenId -> String -> Int -> X()
|
|
dzenScreen sc str timeout = dzenWithArgs str ["-xs", screen] timeout
|
|
where screen = toXineramaArg sc
|
|
|
|
-- | Flashes when a window requests your attention and you can't see it. For use with
|
|
-- XMonadContrib.UrgencyHook. Usage:
|
|
-- > urgencyHook = dzenUrgencyHook (5 `seconds`)
|
|
dzenUrgencyHook :: Int -> Window -> X ()
|
|
dzenUrgencyHook duration w = do
|
|
visibles <- gets mapped
|
|
name <- getName w
|
|
ws <- gets windowset
|
|
whenJust (W.findTag w ws) (flash name visibles)
|
|
where flash name visibles index =
|
|
when (not $ S.member w visibles) $
|
|
dzen (show name ++ " requests your attention on workspace " ++ index) duration
|
|
|
|
dzenWithArgs :: String -> [String] -> Int -> X ()
|
|
dzenWithArgs str args timeout = io $ runProcessWithInputAndWait "dzen2" args (unchomp str) timeout
|
|
-- dzen seems to require the input to terminate with exactly one newline.
|
|
where unchomp s@['\n'] = s
|
|
unchomp [] = ['\n']
|
|
unchomp (c:cs) = c : unchomp cs
|