aboutsummaryrefslogtreecommitdiffstats
path: root/XMonad/Prompt/DirExec.hs
diff options
context:
space:
mode:
Diffstat (limited to 'XMonad/Prompt/DirExec.hs')
-rw-r--r--XMonad/Prompt/DirExec.hs6
1 files changed, 3 insertions, 3 deletions
diff --git a/XMonad/Prompt/DirExec.hs b/XMonad/Prompt/DirExec.hs
index ef37a9a..4919049 100644
--- a/XMonad/Prompt/DirExec.hs
+++ b/XMonad/Prompt/DirExec.hs
@@ -41,17 +41,17 @@ econst = const . return
--
-- 2. In your keybindings add something like:
--
--- > , ("M-C-x", dirExecPrompt defaultXPConfig spawn "/home/joe/.scipts")
+-- > , ("M-C-x", dirExecPrompt def spawn "/home/joe/.scipts")
--
-- or
--
--- > , ("M-C-x", dirExecPromptNamed defaultXPConfig spawn
+-- > , ("M-C-x", dirExecPromptNamed def spawn
-- > "/home/joe/.scripts" "My Scripts: ")
--
-- or add this after your default bindings:
--
-- > ++
--- > [ ("M-x " ++ key, dirExecPrompt defaultXPConfig fn "/home/joe/.scripts")
+-- > [ ("M-x " ++ key, dirExecPrompt def fn "/home/joe/.scripts")
-- > | (key, fn) <- [ ("x", spawn), ("M-x", runInTerm "-hold") ]
-- > ]
-- > ++