tmux: disable weather, rearrange statusbars

This commit is contained in:
John Bowdre 2024-12-23 10:38:37 -06:00
parent 0b7c4606eb
commit a4ec6829dd
Signed by: john
SSH key fingerprint: SHA256:cZYnOxaLdo+MhBNMX38ihO/p2Kek6fBykSFoJwHBhUo

View file

@ -2,12 +2,10 @@
catppuccin.tmux.extraConfig = '' catppuccin.tmux.extraConfig = ''
# catppuccin theme options # catppuccin theme options
set -g @catppuccin_status_modules_left "host" set -g @catppuccin_status_modules_left ""
set -g @catppuccin_status_modules_right "application cpu weather session" set -g @catppuccin_status_modules_right "application cpu user host"
set -g @tmux-weather-units "u"
run-shell ${pkgs.tmuxPlugins.catppuccin}/share/tmux-plugins/catppuccin/catppuccin.tmux run-shell ${pkgs.tmuxPlugins.catppuccin}/share/tmux-plugins/catppuccin/catppuccin.tmux
run-shell ${pkgs.tmuxPlugins.cpu}/share/tmux-plugins/cpu/cpu.tmux run-shell ${pkgs.tmuxPlugins.cpu}/share/tmux-plugins/cpu/cpu.tmux
run-shell ${pkgs.tmuxPlugins.weather}/share/tmux-plugins/weather/tmux-weather.tmux
''; '';
programs.tmux = { programs.tmux = {
@ -22,7 +20,7 @@
keyMode = "vi"; keyMode = "vi";
mouse = true; mouse = true;
shell = "${pkgs.fish}/bin/fish"; shell = "${pkgs.fish}/bin/fish";
plugins = with pkgs.tmuxPlugins; [ cpu weather ]; plugins = with pkgs.tmuxPlugins; [ cpu ];
extraConfig = '' extraConfig = ''
# new panes inherit current working directory # new panes inherit current working directory
bind '%' split-window -h -c '#{pane_current_path}' bind '%' split-window -h -c '#{pane_current_path}'