Newbie first patch to make the **Ssh** extension work with user.

Hi, The patch add *user* support to the *Ssh* extension, .e.g ssh admin@host. By the way, it is the first time i write haskell code snippet for a great project. If there is anything wrong with the code, code style, comment, please let me know. The *XMonad* is awesome, i love it. -- No pain ,No gain!
From Ray!

This 1-patch bundle was just applied to http://code.haskell.org/XMonadContrib: 20140504091120 linxray@gmail.com * This patch makes the Ssh extension works with **user** arguments in ssh, .e.g ssh admin@localhost. -- This message was brought to you by DarcsWatch http://darcswatch.nomeata.de/repo_http:__code.haskell.org_XMonadContrib.html...

Thanks Lei, I've applied it.
Next time try to avoid introducing warnings:
(\(u,h) -> h)
is better written as:
(\(_u, h) -> h)
or
snd
Of course it doesn't really make any difference with tiny functions
like that one, but with bigger functions that warning helps us avoid
bugs and makes things easier to understand.
Regards,
Adam
On Sun, May 4, 2014 at 5:20 AM, Lei Chen
Hi,
The patch add *user* support to the *Ssh* extension, .e.g ssh admin@host. By the way, it is the first time i write haskell code snippet for a great project. If there is anything wrong with the code, code style, comment, please let me know. The *XMonad* is awesome, i love it.
-- No pain ,No gain! From Ray!
_______________________________________________ xmonad mailing list xmonad@haskell.org http://www.haskell.org/mailman/listinfo/xmonad
participants (3)
-
adam vogt
-
darcswatch@nomeata.de
-
Lei Chen