HotSSH 0.2
Ok, I should kick this out the door. So I mentioned before one of my spare time projects is to take over the SSH experience in GNOME, because there are a lot of things that could be better and it's too important to have it trapped entirely inside a VT100 emulator. HotSSH is the initial execution of that plan. You can see the (new) website for a list of things that are done now.
What's potentially in store for the future?
- Remote bash integration, particularly remote working directory
- Drag and drop files onto window to copy (more generally better scp)
- Investigate general extension/scripting mechanism (HotSSH being in Python helps here)
- Potentially have more flexible layout like Terminator?
- Translations other than my humorous (well I think so) initial en_CA.po
- Actually ship as part of GNOME by default
For now there's no mailing list, so blog comments or personal mail until I get that set up; bugs here. Free desktop vendors, start your packaging engines!
Edit: - The download link since the web page isn't synched quite yet

(Anonymous)
Documentation..
Say, would it be possible to toss this note into a README in the archive for next time?
Re: Documentation..
(Anonymous)
Interesting....
My current tools of choice are some manually kludged gnome-terminals for setting up tunnels, with a 2000 line .ssh/config, sshmenu, clusterm, sshfs and a whole bunch of scripts (bash and python) for autogenerating massive configs for my usage.
I have a couple... correction, a whole bunch of possible suggestions/extensions:
1) Some kind of ssh tunnel manager/monitor
2) Absolutely all the things clusterm can do. (An excellent tool)
3) A way of defining "worksets". Click one item, and open # terminals to varying places and configs.
4) Connecting to a machine pops up a password request for loading the ssh key into the ssh-agent. (I saw this in Hardy for the first time, before that I used sshmenu)
5) When I log into a machine an option to add my public key to the authorized_hosts on that machine. Next time, no password prompt (provided I have loaded my private key into the ssh-agent.)
6) Autogenerating worksets for multiple hosts i.e. (foo101 - foo120, for a workset of 20 hosts starting foo)
No doubt I could think of more, but I don't want to scare you :-D
I can script in bash and python, although I suck at the GUI stuff, so I'm interested in this tool, and (if I can find the time) may well be able to contribute. I guess it really depends on what direction you want to take this tool, and if it is intended to be one tool to rule them all ;-)
(Anonymous)
Re: Interesting....
7) A way to log input/output (excluding hidden stuff like passwords) to a file like 200707241158_foo.log - very useful when everyone sudo's to the same user account, and someone has cocked up. In your best Shaggy voice "It wasn't me!!!" while pointing at your logs :-)
Re: Interesting....
The key handling is another huge area to tackle.
(Anonymous)
Re: Interesting....
8) If you implement the broadcast feature (like ClusTerm) dropping files onto the master terminal would copy the file(s) to all the slaved windows.
See, I love tabs in Gnome-terminal, and it would be great to have only one app for both local and remote shells.
In fact, I've been thinking. Does the new GIO / GVFS provides a ssh virtual... stuff ? (sorry, can't find a better word in english ^^). If it does, it could provide lots of interesting points:
- ssh:// in nautilus, to have a WinSCP like
- easy "HotSSH-ing" the Gnome-terminal
- ...
Anyway, this looks like a great alternative to SSHMenu. Gotta try that very soon.
It does use the same main terminal emulator widget that GNOME Terminal uses (VTE).
But HotSSH is definitely not intending to be a general purpose terminal - for that you should use GNOME Terminal.
GIO only provides SFTP support, and I do have some plans to integrate with that.
Yes, but Gnome-Terminal doesn't have all the nice features you are making in HotSSH :D
But other than that I'm not sure it makes sense to put a lot of app-specific code into gnome-terminal; long term for example I can see all the SSH-specific code being at least half as big as g-t currently.
(Anonymous)
ooh!
Do you think there is any scope for merging this more closely with terminator?
Chris Jones
Re: ooh!
(Anonymous)
- check this bug report: https://bugs.launchpad.net/ubuntu/+sourc
(IIRC there was a similar report for Debian as well, but I couldn't find it now):
- apparently here's a possible implementation:
http://balanceofcowards.blogspot.com/200
Nothing against HotSSH in particular, but having better SSH support without having to compile/install yet another new app would be quite nice, IMHO.
I have nothing against bash completion, but fundamentally I don't think bash (or more generally the Unix shell) is the final word on the interface to ssh or the computer. By using a real display system (GTK+/X11) it is possible to create a faster and better UI and I believe HotSSH demonstrates that.