diff options
-rw-r--r-- | SshPrompt.hs | 23 |
1 files changed, 11 insertions, 12 deletions
diff --git a/SshPrompt.hs b/SshPrompt.hs index 5bee3b6..c1d69b0 100644 --- a/SshPrompt.hs +++ b/SshPrompt.hs @@ -17,18 +17,6 @@ module XMonadContrib.SshPrompt ( -- $usage sshPrompt ) where -{- -usage: -1. In Config.hs add: - -> import XMonadContrib.XPrompt -> import XMonadContrib.SshPrompt - -3. In your keybindings add something like: - -> , ((modMask .|. controlMask, xK_x), xmonadPrompt defaultPromptConfig) - --} import XMonad import XMonadContrib.XPrompt @@ -37,6 +25,17 @@ import Control.Monad import System.Directory import System.Environment +-- $usage +-- 1. In Config.hs add: +-- +-- > import XMonadContrib.XPrompt +-- > import XMonadContrib.SshPrompt +-- +-- 3. In your keybindings add something like: +-- +-- > , ((modMask .|. controlMask, xK_x), xmonadPrompt defaultXPConfig) +-- + data Ssh = Ssh instance XPrompt Ssh where |