ftp -o - https://jcs.org/move_in | sh -
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

tmux.conf: make C-a,a send prefix, C-a,C-a and C-space swap windows

+3 -1
+3 -1
.tmux.conf
··· 1 1 # use control+a as a prefix like screen 2 2 set-option -g prefix C-a 3 3 unbind-key C-b 4 - bind-key C-a send-prefix 4 + bind-key a send-prefix 5 + bind-key C-a next-window 5 6 6 7 bind-key space next-window 8 + bind-key C-space next-window 7 9 8 10 set -g status-position top 9 11