Copyright | (C) 2008 Justin Bogner |
---|---|
License | BSD3 |
Maintainer | mail@justinbogner.com |
Stability | unstable |
Portability | unportable |
Safe Haskell | Safe-Inferred |
Language | Haskell2010 |
A prompt for XMonad which will run a program, open a file, or raise an already running program, depending on context.
Synopsis
- runOrRaisePrompt :: XPConfig -> X ()
- data RunOrRaisePrompt
Usage
- In your
xmonad.hs
:
import XMonad.Prompt import XMonad.Prompt.RunOrRaise
- In your keybindings add something like:
, ((modm .|. controlMask, xK_x), runOrRaisePrompt def)
For detailed instruction on editing the key binding see the tutorial.
runOrRaisePrompt :: XPConfig -> X () Source #
data RunOrRaisePrompt Source #
Instances
XPrompt RunOrRaisePrompt Source # | |
Defined in XMonad.Prompt.RunOrRaise showXPrompt :: RunOrRaisePrompt -> String Source # nextCompletion :: RunOrRaisePrompt -> String -> [String] -> String Source # commandToComplete :: RunOrRaisePrompt -> String -> String Source # completionToCommand :: RunOrRaisePrompt -> String -> String Source # completionFunction :: RunOrRaisePrompt -> ComplFunction Source # modeAction :: RunOrRaisePrompt -> String -> String -> X () Source # |