Fixed minor formatting problems.

This commit is contained in:
Graeme Humphries 2012-03-14 16:57:45 -07:00
parent 7c11cb9a25
commit 831883482a
2 changed files with 3 additions and 1 deletions

View File

@ -9,6 +9,7 @@ For anyone who needs to administrate clusters of many machines,
fallback for when the rest of your automation tools aren't working. fallback for when the rest of your automation tools aren't working.
However, cssh has a number of deficiencies in modern environments: However, cssh has a number of deficiencies in modern environments:
- Doesn't play nice with window placement of modern window managers. - Doesn't play nice with window placement of modern window managers.
- Doesn't play nice with modern toolkits' copy and paste behaviour. - Doesn't play nice with modern toolkits' copy and paste behaviour.
- Gets a bit screwy when there's more terminals than can fit on-screen. - Gets a bit screwy when there's more terminals than can fit on-screen.
@ -16,6 +17,7 @@ However, cssh has a number of deficiencies in modern environments:
crussh aims to be a simple replacement for cssh that corrects these crussh aims to be a simple replacement for cssh that corrects these
problems. It does so with the following features: problems. It does so with the following features:
- Uses a single window to hold multiple terminals. - Uses a single window to hold multiple terminals.
- Intelligently tiles terminals to fit available window size. - Intelligently tiles terminals to fit available window size.
- Scrolls available terminals when they don't all fit in-window. - Scrolls available terminals when they don't all fit in-window.

View File

@ -1,7 +1,7 @@
#!/usr/bin/env python #!/usr/bin/env python
# A cssh replacement written in Python / GTK. # A cssh replacement written in Python / GTK.
# ©2012 - Graeme Humphries <graeme@sudo.ca>. # (c)2012 - Graeme Humphries <graeme@sudo.ca>.
# Released under the GPL, version 3: http://www.gnu.org/licenses/ # Released under the GPL, version 3: http://www.gnu.org/licenses/
# Requires: python-gtk2 python-vte # Requires: python-gtk2 python-vte