chore(TMUX): updated config
This commit is contained in:
parent
208f914ef0
commit
da4cb6094f
5 changed files with 65 additions and 7 deletions
27
.config/tmux/tmux_status_bar.conf
Normal file
27
.config/tmux/tmux_status_bar.conf
Normal file
|
@ -0,0 +1,27 @@
|
|||
#!/usr/bin/env bash
|
||||
|
||||
# Hardcoded values
|
||||
set -g status-bg "#282828"
|
||||
set -g @unfocused-fg "#d4be98"
|
||||
set -g @focused-bg "#d4be98"
|
||||
set -g @focused-fg "#282828"
|
||||
# Set status bar position
|
||||
set -g status-position top
|
||||
|
||||
# Set status bar style
|
||||
set -g status-style ' #[bg=#{status-bg},fg=#{@unfocused-fg}] '
|
||||
|
||||
# Set status bar justification
|
||||
set -g status-justify left
|
||||
|
||||
# Set right side of the status bar
|
||||
set -g status-right '#[bg=#{status-bg},fg=#{@unfocused-fg}] #S'
|
||||
|
||||
# Set window status format
|
||||
set -g window-status-format ' #I:#W '
|
||||
|
||||
# Set window status format
|
||||
set -g window-status-format ' #[bg=#{status-bg},fg=#{@unfocused-fg}] #I:#W '
|
||||
|
||||
# Set window status format for the current window
|
||||
set -g window-status-current-format ' #[bg=#{@focused-bg},fg=#{@focused-fg}] #I:#W '
|
Loading…
Add table
Add a link
Reference in a new issue