xmonad-contrib-0.11.1: Third party extensions for xmonad

Portabilityunportable
Stabilityunstable
Maintainerandrea.rossato@unibz.it
Safe HaskellNone

XMonad.Prompt.Shell

Contents

Description

A shell prompt for XMonad

Synopsis

Usage

  1. In your ~/.xmonad/xmonad.hs:
 import XMonad.Prompt
 import XMonad.Prompt.Shell
  1. In your keybindings add something like:
   , ((modm .|. controlMask, xK_x), shellPrompt defaultXPConfig)

For detailed instruction on editing the key binding see XMonad.Doc.Extending.

data Shell Source

Constructors

Shell 

Instances

Variations on shellPrompt

See safe and unsafeSpawn in XMonad.Util.Run. prompt is an alias for safePrompt; safePrompt and unsafePrompt work on the same principles, but will use XPrompt to interactively query the user for input; the appearance is set by passing an XPConfig as the second argument. The first argument is the program to be run with the interactive input. You would use these like this:

     , ((modm,               xK_b), safePrompt "firefox" greenXPConfig)
     , ((modm .|. shiftMask, xK_c), prompt ("xterm" ++ " -e") greenXPConfig)

Note that you want to use safePrompt for Firefox input, as Firefox wants URLs, and unsafePrompt for the XTerm example because this allows you to easily start a terminal executing an arbitrary command, like top.

Utility functions

getBrowser :: IO StringSource

Ask the shell what browser the user likes. If the user hasn't defined any $BROWSER, defaults to returning "firefox", since that seems to be the most common X web browser. Note that if you don't specify a GUI browser but a textual one, that'll be a problem as getBrowser will be called by functions expecting to be able to just execute the string or pass it to a shell; so in that case, define $BROWSER as something like "xterm -e elinks" or as the name of a shell script doing much the same thing.

getEditor :: IO StringSource

Like getBrowser, but should be of a text editor. This gets the $EDITOR variable, defaulting to "emacs".

split :: Eq a => a -> [a] -> [[a]]Source