nix/home/file/tmux/module/Status.nix

20 lines
460 B
Nix
Raw Normal View History

2024-11-22 06:27:57 +03:00
{ ... }: {
2024-11-04 04:37:29 +03:00
text = ''
bind-key -n M-f set-option -g status;
set -g status-left-length 50
set -g status-position bottom
set -g status-justify left
2024-04-30 20:35:45 +03:00
2024-11-19 02:21:12 +03:00
set -g status-left "#[bold] #H-#S #[default]"
2024-11-04 04:37:29 +03:00
set -g status-right ""
2024-04-30 20:35:45 +03:00
2024-11-19 02:21:12 +03:00
set-window-option -g window-status-separator ""
2024-04-30 20:35:45 +03:00
2024-11-04 04:37:29 +03:00
setw -g window-status-current-format " #W "
setw -g window-status-format " #W "
2024-04-30 20:35:45 +03:00
2024-11-04 04:37:29 +03:00
set-window-option -g visual-bell off
setw -g window-status-bell-style "bold blink"
'';
2024-04-30 20:35:45 +03:00
}