Making Byobu Behave

I love byobu (the awesome screen/tmux wrapper). One of my pet peeves with byobu, is it takes over the Function keys (F-keys). There is very little to no documentation on how to disable that by default. Here is how …

For Tmux:

echo 'source $BYOBU_PREFIX/share/byobu/keybindings/f-keys.tmux.disable' >> ~/.byobu/keybindings.tmux  

For Screen:

# Enable Screen if you haven't, tmux is the default 
echo 'BYOBU_BACKEND=screen' >> ~/.byobu/backend  
# turn of the pesky f-keys 
echo 'source $BYOBU_PREFIX/share/byobu/keybindings/screen-escape-keys' > ~/ .byobu/keybindings.screen

I love byobu (the awesome screen/tmux wrapper). One of my pet peeves with byobu, is it takes over the Function keys (F-keys). There is very little to no documentation on how to disable that by default. Here is how … For Tmux: echo ‘source $BYOBU_PREFIX/share/byobu/keybindings/f-keys.tmux.disable’ >> ~/.byobu/keybindings.tmux For Screen: # Enable Screen if you haven’t,…