mirror of
https://github.com/xmonad/xmonad-contrib.git
synced 2025-05-19 03:20:21 -07:00
Add dmenu (thanks jcreigh)
This commit is contained in:
parent
95409a005f
commit
0017932989
32
Dmenu.hs
Normal file
32
Dmenu.hs
Normal file
@ -0,0 +1,32 @@
|
|||||||
|
module XMonadContrib.Dmenu (dmenu, dmenuXinerama, runProcessWithInput) where
|
||||||
|
|
||||||
|
import XMonad
|
||||||
|
import qualified StackSet as W
|
||||||
|
import System.Process
|
||||||
|
import System.IO
|
||||||
|
import Control.Monad
|
||||||
|
import Control.Monad.State
|
||||||
|
import Data.Maybe
|
||||||
|
import qualified Data.Map as M
|
||||||
|
|
||||||
|
runProcessWithInput :: FilePath -> [String] -> String -> IO String
|
||||||
|
runProcessWithInput cmd args input = do
|
||||||
|
(pin, pout, perr, ph) <- runInteractiveProcess cmd args Nothing Nothing
|
||||||
|
hPutStr pin input
|
||||||
|
hClose pin
|
||||||
|
output <- hGetContents pout
|
||||||
|
when (output==output) $ return ()
|
||||||
|
hClose pout
|
||||||
|
hClose perr
|
||||||
|
waitForProcess ph
|
||||||
|
return output
|
||||||
|
|
||||||
|
dmenuXinerama :: [String] -> X String
|
||||||
|
dmenuXinerama opts = do
|
||||||
|
ws <- gets workspace
|
||||||
|
let curscreen = fromIntegral $ fromMaybe 0 (M.lookup (W.current ws) (W.ws2screen ws)) :: Int
|
||||||
|
io $ runProcessWithInput "dmenu" ["-xs", show (curscreen+1)] (unlines opts)
|
||||||
|
|
||||||
|
dmenu :: [String] -> IO String
|
||||||
|
dmenu opts = runProcessWithInput "dmenu" [] (unlines opts)
|
||||||
|
|
Loading…
x
Reference in New Issue
Block a user