mirror of
https://github.com/dustinkirkland/byobu
synced 2025-08-21 22:13:19 -07:00
try very hard to get the help to fit on a single console window
This commit is contained in:
parent
5190c9f043
commit
6016f7faf4
2 changed files with 6 additions and 9 deletions
13
doc/help.txt
13
doc/help.txt
|
@ -1,8 +1,7 @@
|
|||
GNU Screen is a powerful program that allows your terminal session to
|
||||
use multiple windows, and retain context among multiple logins.
|
||||
Screen is a powerful program that allows your terminal session to use
|
||||
multiple windows and retain context among multiple logins.
|
||||
|
||||
This version of screen is configured with a task bar at the bottom of
|
||||
the window that shows: open windows, the current-OS, reboot-required,
|
||||
A task bar at the bottom shows: open windows, OS-version, reboot-req,
|
||||
updates-available, system-load, cpu-info, memory-info, and date/time.
|
||||
|
||||
F2 Create a new window | F6 Detach from the session
|
||||
|
@ -10,7 +9,5 @@ F3 Go to the prev window | F7 Enter scrollback mode
|
|||
F4 Go to the next window | F8 View all keybindings
|
||||
F5 Close current window | F9 Configure screen-profiles
|
||||
| F12 Lock this terminal
|
||||
|
||||
'screen -r' - reattach | 'man screen' - complete help
|
||||
|
||||
The escape key is currently set to <ctrl-<esckey>>
|
||||
'screen -r' - reattach |
|
||||
'man screen' - complete help | <ctrl-<esckey>> Escape sequence
|
||||
|
|
|
@ -110,7 +110,7 @@ def help(screen, size, config):
|
|||
|
||||
text=text.replace("<esckey>", getesckey(), 1)
|
||||
|
||||
t = Textbox(70, 16, text, scroll=1)
|
||||
t = Textbox(70, 14, text, scroll=1)
|
||||
bb = ButtonBar(screen, ((_("Back"), )), compact = 1)
|
||||
g = GridForm(screen, _("Screen Profiles Help"), 1, 3)
|
||||
g.add(t, 0, 0, padding=(0,0,0,0))
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue