From b7bc253ca3160578f88d05fd7f2d9dacae7b00dd Mon Sep 17 00:00:00 2001 From: Joey Hess Date: Fri, 28 Apr 2017 18:23:34 -0400 Subject: automatically open control window --- VirtualTerminal.hs | 41 +++++++++++++++++++++++++++++++++++++++++ 1 file changed, 41 insertions(+) create mode 100644 VirtualTerminal.hs (limited to 'VirtualTerminal.hs') diff --git a/VirtualTerminal.hs b/VirtualTerminal.hs new file mode 100644 index 0000000..6c7ef75 --- /dev/null +++ b/VirtualTerminal.hs @@ -0,0 +1,41 @@ +module VirtualTerminal where + +import System.FilePath +import System.Directory +import System.Process +import System.Environment + +-- | Finds a virtual termianl program that looks like it will work +-- to run a command with some parameters. +-- +-- Note that the parameters are exposed to the shell by some virtual +-- termianls, but not by others. +runInVirtualTerminal :: String -> String -> [String] -> IO (Maybe CreateProcess) +runInVirtualTerminal title cmd params = do + path <- getSearchPath + mdisplay <- lookupEnv "DISPLAY" + possibles <- case mdisplay of + Just _ -> return $ do + p <- path + c <- xtermcmds + return (p, c) + Nothing -> return [] + find possibles + where + find [] = return Nothing + find ((d, (c, ps)):rest) = do + exists <- doesFileExist (d c) + if exists + then return $ Just $ proc (d c) ps + else find rest + + -- Ordered list; generally xfce user may have gnome stuff + -- installed, and only fall back to the older terminals when + -- nothing else is available. + xtermcmds = + [ ("xfce4-terminal", std) + , ("gnome-terminal", ["-e", unwords (cmd:params)]) + , ("xterm", std) + , ("rxvt", ["-T", title, "-e", cmd]) + ] + std = ["-T", title, "-e", unwords (cmd:params)] -- cgit v1.2.3