Removed Status Line

This commit is contained in:
Thomas Naderer
2024-12-22 15:34:14 +01:00
parent 7d89f6fbbc
commit 741e32a1ff

View File

@@ -11,15 +11,22 @@ setw -g pane-base-index 1 # Pane numbering starts at 1
set-option -g status-keys vi # Use vi-style keybindings set-option -g status-keys vi # Use vi-style keybindings
# Status Bar Customization # Status Bar Customization
set -g status on set -g status off
set -g status-interval 5
set -g status-justify centre
set -g status-bg black set -g status-bg black
set -g status-fg white set -g status-fg white
set -g status-left-length 30 set -g status-interval 5
set -g status-right-length 30
set -g status-left "#[fg=green]#S #[fg=cyan]| #[fg=yellow]%H:%M #[fg=magenta]%d-%b" # Left: Session name
set -g status-right "#[fg=blue]%a #[fg=cyan]| #[fg=red]#(whoami)" set -g status-left "#S "
# Right: Time and date
set -g status-right "%H:%M | %d-%b-%Y"
# Window options
setw -g window-status-format " #I:#W "
setw -g window-status-current-format " #I:#W "
setw -g window-status-separator ""
# Key Bindings # Key Bindings
bind r source-file ~/.config/tmux/.tmux.conf \; display-message "Config Reloaded" bind r source-file ~/.config/tmux/.tmux.conf \; display-message "Config Reloaded"