55

On the byobu Wikipedia page there is a screenshot with the terminal screen:

Link to terminal screen using byobu

  1. Can somebody explain to me what programs are used here?
    My guess - at the bottom - vim, top right - terminal, top left - I don't know.

  2. And how to make such a byobu screen?

the
  • 805
  • 1
  • 9
  • 16
AndriusZ
  • 653

2 Answers2

79

The controls have changed since the accepted answer was posted. From Byobu's help page:

  • Split screen horizontally:

    • Shift+F2 or
    • Ctrl+A then |
  • Split screen vertically:

    • Ctrl+F2 or
    • Ctrl+A then %
  • Switch focus:

    • Shift+↑ ↓ ← → or
    • Ctrl+A then ↑ ↓ ← →
David Foerster
  • 36,264
  • 56
  • 94
  • 147
nick
  • 908
  • 1
  • 7
  • 7
27

1 . Can somebody explain to me what programs are used here?

  • Program top left is the command htop (is similar to command top)
  • Program top right is indeed a terminal and the bottom one is indeed vim

2 . And how to make such a byobu screen?

  • Horizontal split: Ctrl+A S
  • Vertical split: Ctrl+A | (there is a vertical screen patch that switches the shortcut to Ctrl+A V)
  • To move the focus to the next split: Ctrl+A Tab

Some more shortcuts.

the
  • 805
  • 1
  • 9
  • 16
Rinzwind
  • 299,756
  • 16
    The shortcuts have changed since. See help.ubuntu.com/community/Byobu Shift+F2 and Ctrl+F2 split the screen horizontally and vertically respectively. Moving focus is done with Shift+Arrow Key (left, right, up, down) depending on the focus switch you want to do. – BlueCacti Aug 31 '15 at 16:19
  • 9
    This is what works for me: Ctrl + A % to split horizontally and Ctrl + A | to split vertically. – Hoang Huynh Dec 23 '15 at 08:49
  • Doesn't work with Emacs bindings. ;) – A.B. Jan 07 '16 at 08:53
  • @A.B. Think of these commands as [prefix] + [command]. On my system, the default prefix for Emacs-compatibility is C-S. So, in my case, I press C-S % to split horizontally. (See comment by Hoang Huynh above.) – David J. Sep 21 '16 at 19:26
  • @HoangHuynh Strange, in my case your shortcuts work, but do the exact opposite. – hbogert Jul 26 '17 at 20:36
  • If you use emacs key bindings.. then replace Ctrl+A with F12 – VJ. Nov 26 '19 at 13:24