Configs/Misc/Home/.tmux.conf

25 lines
573 B
Plaintext
Raw Normal View History

2022-08-17 21:13:35 +02:00
# Enable full Mouse support
set -g mouse on
# Refresh Status Bar every 1 second
set -g status-interval 1
# Reassign Shortcuts
bind | split-window -h
bind - split-window -v
# Status Bar
set -g status-position bottom
2022-08-17 23:41:37 +02:00
set -g status-style 'bg=black fg=pink'
2022-08-17 21:13:35 +02:00
set -g status-left ' #S '
set -g status-right ' %H:%M:%S '
2022-08-17 23:41:37 +02:00
setw -g window-status-current-style 'bg=pink fg=black bold'
2022-08-17 21:13:35 +02:00
setw -g window-status-current-format ' #W '
2022-08-17 23:41:37 +02:00
setw -g window-status-style 'bg=brightblack fg=pink'
2022-08-17 21:13:35 +02:00
setw -g window-status-format ' #W '
# Message Bar
2022-08-17 23:41:37 +02:00
set -g message-style 'bg=pink fg=black bold'