xmonad-contrib
Copyright(C) 2007 Andrea Rossato
LicenseBSD3
Maintainerandrea.rossato@unibz.it
Stabilityunstable
Portabilityunportable
Safe HaskellNone
LanguageHaskell2010

XMonad.Prompt.Ssh

Contents

Description

A ssh prompt for XMonad

Synopsis

Usage

  1. In your xmonad.hs:
import XMonad.Prompt
import XMonad.Prompt.Ssh
  1. In your keybindings add something like:
  , ((modm .|. controlMask, xK_s), sshPrompt def)

Keep in mind, that if you want to use the completion you have to disable the "HashKnownHosts" option in your ssh_config

For detailed instruction on editing the key binding see the tutorial.

data Ssh Source #

Instances

Instances details
XPrompt Ssh Source # 
Instance details

Defined in XMonad.Prompt.Ssh

Methods

showXPrompt :: Ssh -> String Source #

nextCompletion :: Ssh -> String -> [String] -> String Source #

commandToComplete :: Ssh -> String -> String Source #

completionToCommand :: Ssh -> String -> String Source #

completionFunction :: Ssh -> ComplFunction Source #

modeAction :: Ssh -> String -> String -> X () Source #