diff options
author | Spencer Janssen <spencerjanssen@gmail.com> | 2009-01-17 05:04:32 +0100 |
---|---|---|
committer | Spencer Janssen <spencerjanssen@gmail.com> | 2009-01-17 05:04:32 +0100 |
commit | 90949577aeb040012a49c7687bcfec8fcfb80e34 (patch) | |
tree | ac6147d375cb6fda28e135cee521cf9597791f65 /XMonad/Prompt | |
parent | 8c294bb7ac6c1c6a71edfeae11719111a84bf284 (diff) | |
download | XMonadContrib-90949577aeb040012a49c7687bcfec8fcfb80e34.tar.gz XMonadContrib-90949577aeb040012a49c7687bcfec8fcfb80e34.tar.xz XMonadContrib-90949577aeb040012a49c7687bcfec8fcfb80e34.zip |
Add XMonad.Actions.SpawnOn
Ignore-this: 63869d1ab11f2ed5aab1690763065800
darcs-hash:20090117040432-25a6b-306aa18fed69a47197ca8c349cf6452939db5188.gz
Diffstat (limited to 'XMonad/Prompt')
-rw-r--r-- | XMonad/Prompt/Shell.hs | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/XMonad/Prompt/Shell.hs b/XMonad/Prompt/Shell.hs index c659787..d1ea150 100644 --- a/XMonad/Prompt/Shell.hs +++ b/XMonad/Prompt/Shell.hs @@ -15,7 +15,8 @@ module XMonad.Prompt.Shell ( -- * Usage -- $usage - shellPrompt + Shell (..) + , shellPrompt , getCommands , getBrowser , getEditor @@ -141,4 +142,4 @@ getBrowser = env "BROWSER" "firefox" -- | Like 'getBrowser', but should be of a text editor. This gets the $EDITOR variable, defaulting to \"emacs\". getEditor :: IO String -getEditor = env "EDITOR" "emacs"
\ No newline at end of file +getEditor = env "EDITOR" "emacs" |