mirror of
https://github.com/xmonad/xmonad-contrib.git
synced 2025-05-19 03:20:21 -07:00
Dmenu.hs: info and documentation
This commit is contained in:
parent
c279ec4cea
commit
72450b2512
30
Dmenu.hs
30
Dmenu.hs
@ -1,4 +1,23 @@
|
||||
module XMonadContrib.Dmenu (dmenu, dmenuXinerama, runProcessWithInput) where
|
||||
-----------------------------------------------------------------------------
|
||||
-- |
|
||||
-- Module : XMonadContrib.Dmenu
|
||||
-- Copyright : (c) Spencer Janssen <sjanssen@cse.unl.edu>
|
||||
-- License : BSD-style (see LICENSE)
|
||||
--
|
||||
-- Maintainer : Spencer Janssen <sjanssen@cse.unl.edu>
|
||||
-- Stability : unstable
|
||||
-- Portability : unportable
|
||||
--
|
||||
-- A convenient binding to dmenu.
|
||||
--
|
||||
-----------------------------------------------------------------------------
|
||||
|
||||
module XMonadContrib.Dmenu (
|
||||
-- * Usage
|
||||
-- $usage
|
||||
dmenu, dmenuXinerama,
|
||||
runProcessWithInput
|
||||
) where
|
||||
|
||||
import XMonad
|
||||
import qualified StackSet as W
|
||||
@ -6,6 +25,11 @@ import System.Process
|
||||
import System.IO
|
||||
import Control.Monad.State
|
||||
|
||||
-- $usage
|
||||
-- You can use this module with the following in your Config.hs file:
|
||||
--
|
||||
-- > import XMonadContrib.Dmenu
|
||||
|
||||
runProcessWithInput :: FilePath -> [String] -> String -> IO String
|
||||
runProcessWithInput cmd args input = do
|
||||
(pin, pout, perr, ph) <- runInteractiveProcess cmd args Nothing Nothing
|
||||
@ -18,8 +42,8 @@ runProcessWithInput cmd args input = do
|
||||
waitForProcess ph
|
||||
return output
|
||||
|
||||
-- Starts dmenu on the current screen. Requires this patch to dmenu:
|
||||
-- http://www.jcreigh.com/dmenu/dmenu-2.8-xinerama.patch
|
||||
-- | Starts dmenu on the current screen. Requires this patch to dmenu:
|
||||
-- http:\/\/www.jcreigh.com\/dmenu\/dmenu-2.8-xinerama.patch
|
||||
dmenuXinerama :: [String] -> X String
|
||||
dmenuXinerama opts = do
|
||||
curscreen <- (fromIntegral . W.screen . W.current) `liftM` gets windowset :: X Int
|
||||
|
Loading…
x
Reference in New Issue
Block a user