diff options
-rw-r--r-- | XMonad/Prompt/AppLauncher.hs (renamed from XMonad/Actions/AppLauncher.hs) | 30 | ||||
-rw-r--r-- | xmonad-contrib.cabal | 2 |
2 files changed, 17 insertions, 15 deletions
diff --git a/XMonad/Actions/AppLauncher.hs b/XMonad/Prompt/AppLauncher.hs index a2026ad..4cb3ecc 100644 --- a/XMonad/Actions/AppLauncher.hs +++ b/XMonad/Prompt/AppLauncher.hs @@ -1,16 +1,18 @@ -{- | - Module : XMonad.Actions.AppLauncher - Copyright : (C) 2008 Luis Cabellos - License : None; public domain - - Maintainer : <zhen.sydow@gmail.com> - Stability : unstable - Portability : unportable - - A module for launch applicationes that receive parameters in the command line. - The launcher call a prompt to get the parameters. --} -module XMonad.Actions.AppLauncher ( -- * Usage +----------------------------------------------------------------------------- +-- | +-- Module : XMonad.Prompt.AppLauncher +-- Copyright : (C) 2008 Luis Cabellos +-- License : BSD3 +-- +-- Maintainer : zhen.sydow@gmail.com +-- Stability : unstable +-- Portability : unportable +-- +-- A module for launch applicationes that receive parameters in the command +-- line. The launcher call a prompt to get the parameters. +-- +----------------------------------------------------------------------------- +module XMonad.Prompt.AppLauncher ( -- * Usage -- $usage launchApp @@ -40,7 +42,7 @@ First, you need to import necessary modules. Prompt is used to get the promp configuration and the AppLauncher module itself. > import XMonad.Prompt -> import XMonad.Actions.AppLauncher as AL +> import XMonad.Prompt.AppLauncher as AL Then you can add the bindings to the applications. diff --git a/xmonad-contrib.cabal b/xmonad-contrib.cabal index 47bf46a..16706fd 100644 --- a/xmonad-contrib.cabal +++ b/xmonad-contrib.cabal @@ -67,7 +67,6 @@ library XMonad.Doc.Configuring XMonad.Doc.Extending XMonad.Doc.Developing - XMonad.Actions.AppLauncher XMonad.Actions.Commands XMonad.Actions.ConstrainedResize XMonad.Actions.CopyWindow @@ -165,6 +164,7 @@ library XMonad.Prompt.Directory XMonad.Prompt XMonad.Prompt.AppendFile + XMonad.Prompt.AppLauncher XMonad.Prompt.Input XMonad.Prompt.Email XMonad.Prompt.Layout |