Copyright | (c) 2007 Brent Yorgey |
---|---|
License | BSD-style (see LICENSE) |
Maintainer | <byorgey@gmail.com> |
Stability | stable |
Portability | unportable |
Safe Haskell | Safe-Inferred |
Language | Haskell2010 |
A prompt for sending quick, one-line emails, via the standard GNU 'mail' utility (which must be in your $PATH). This module is intended mostly as an example of using XMonad.Prompt.Input to build an action requiring user input.
Synopsis
- emailPrompt :: XPConfig -> [String] -> X ()
Usage
You can use this module by importing it, along with
XMonad.Prompt, into your xmonad.hs
file:
import XMonad.Prompt import XMonad.Prompt.Email
and adding an appropriate keybinding, for example:
, ((modm .|. controlMask, xK_e), emailPrompt def addresses)
where addresses
is a list of email addresses that should
autocomplete, for example:
addresses = ["me@me.com", "mr@big.com", "tom.jones@foo.bar"]
You can still send email to any address, but sending to these addresses will be faster since you only have to type a few characters and then hit 'tab'.
For detailed instructions on editing your key bindings, see the tutorial.