18 lines
577 B
Bash
18 lines
577 B
Bash
# use PREFIX | to split window horizontally and PREFIX - to split vertically
|
|
bind | split-window -h
|
|
bind - split-window -v
|
|
|
|
source-file .tmuxline.tmux.conf
|
|
# ----------------------
|
|
# Status Bar
|
|
# -----------------------
|
|
## Status bar design
|
|
## status line
|
|
set -g status-justify left
|
|
set -g status-bg default
|
|
set -g status-fg colour12
|
|
set -g status-interval 2
|
|
set-option -g status on # turn the status bar on
|
|
set -g status-justify centre # center window list for clarity
|
|
# set-option -g status-position top # position the status bar at top of screen
|