search

Showing posts with label byobu. Show all posts
Showing posts with label byobu. Show all posts

Sunday, November 15, 2015

Change colours in byobu

Colour settings file for the byobu located in the folder ~/.byoubu, if you use tmux, it will be color.tmux:
BYOBU_DARK=black
BYOBU_LIGHT=white
BYOBU_ACCENT=cyan
BYOBU_HIGHLIGHT=cyan
MONOCHROME=white
BYOBU_ACCENT - is the colour of the window delimiter; BYOBU_HIGHLIGHT - is the colour of the current highlighted window; MONOCHROME - background colour of the window title in the bottom panel;

Sunday, March 22, 2015

byobu: Vertical window split issue

Vertical split with default keys configuration in byobu (which is Shift+F2) doesn't work. I decided to change it to Ctrl+F1 instead. To do it open keybinding file:
sudo vim /usr/share/byobu/keybindings/f-keys.tmux

And replace line
bind-key -n S-F2 display-panes \; split-window -v

with
bind-key -n C-F1 display-panes \; split-window -v

Make sure that tmux keybinding is active and default one. Open file
/usr/share/byobu/keybindings/f-keys

and check that it contains
source $BYOBU_PREFIX/share/byobu/keybindings/f-keys.tmux