Posts

Showing posts with the label byobu

How do I switch window in byobu

If you hold alt-key then use left-right arrow key. Then you can move around byobu window

Byobu + Tmux Tips # 2014-01-22

Scenario#1     As a Byobu-Tmux user, I want to broadcast command to multiple panes. So that I don't have to do the same thing for each pane. solution#1 enter command mode => PREFIX + : active this feature => setw synchronize-panes on deactive => setw synchronize-panes off Scenario#2     As a Byobu-Tmus user, I want to have a shortcut to maximize/minimize current pane. So that I can see/work on specific pane efficiently. solution#1 edit ~/.byobu/keybindings.tmux fill-in these code below # maximum pane and restore unbind + bind + new-window -d -n tmux-zoom 'clear && echo TMUX ZOOM && read' \; swap-pane -s tmux-zoom.0 \; select-window -t tmux-zoom  unbind -  bind - last-window \; swap-pane -s tmux-zoom.0 \; kill-window -t tmux-zoom # resize pane bind H resize-pane -L 1 bind J resize-pane -D 1 bind K resize-pane -U 1 bind L resize-pane -R 1 Scenario#3     As a Byobu-Tmux...

Screen and Byobu , again

When your linux machine have both screen and byobu. you can do below for daemon mode(-d) with name(-S) , sorry don't know about (-m) yet. >> byobu -dmS then >> byobu -r or just byobu (if there is only one session valid, i think) when you wanna go out from screen but want it still deamon >> (in byobu session) byobu -d more tips - f7 for copy mode - ctrl - a ctrl - a for switch tab(window) - f8 for change tab's title - ctrl - a ctrl - c for create new tab(window) - ctrl - a <0-9> for changing windows