From ee696a00475451e00ffb4b67ad9eef107b34d4ea Mon Sep 17 00:00:00 2001 From: scbj Date: Wed, 16 Oct 2024 16:38:05 +0200 Subject: [PATCH] tmux alias --- bashrc/.bashrc | 4 ++++ tmux/.config/tmux/zegonix.conf | 11 ++++++----- 2 files changed, 10 insertions(+), 5 deletions(-) diff --git a/bashrc/.bashrc b/bashrc/.bashrc index f860f26..50b6f5c 100644 --- a/bashrc/.bashrc +++ b/bashrc/.bashrc @@ -22,7 +22,11 @@ alias nano='nano -l' alias dirs='dirs -v' +alias sbashrc='source ~/.bashrc' + +## short forms for tmux commands alias trw='tmux rename-window' +alias tnw='tmux new-window -c "#{pane_current_path}"' # promt config, is overwritten by starship PS1='[\u@\h \W]\$ ' diff --git a/tmux/.config/tmux/zegonix.conf b/tmux/.config/tmux/zegonix.conf index bd37459..dd3c29d 100644 --- a/tmux/.config/tmux/zegonix.conf +++ b/tmux/.config/tmux/zegonix.conf @@ -22,9 +22,10 @@ set -g @dark-blue "#000010" set -g @blue "#203050" set -g @light-blue "#5BB8FF" set -g @cyan "#15D7E5" -set -g @dark-grey "#202038" +set -g @dark-grey "#282830" set -g @light-grey "#A0A0AD" set -g @black "#000000" +set -g @dark-green "#183018" # format strings @@ -36,11 +37,11 @@ set-window-option -g window-status-separator "" # style strings -set-option -g status-style "bg=#{@blue},fg=#{@white}" +set-option -g status-style "bg=#{@dark-grey},fg=#{@white}" set-option -g status-left-style "bg=#{@light-grey},fg=#{@dark-blue}" -set-option -g status-right-style "bg=#{@blue},fg=#{@white}" -setw -g window-status-style "bg=#{@blue},fg=#{@light-blue},bold" -setw -g window-status-activity-style "bg=#{@blue},fg=#{@light-blue},bold" +set-option -g status-right-style "bg=#{@dark-grey},fg=#{@white}" +setw -g window-status-style "bg=#{@dark-grey},fg=#{@light-blue},bold" +setw -g window-status-activity-style "bg=#{@dark-grey},fg=#{@light-blue},bold" setw -g window-status-current-style "bg=#{@light-blue},fg=#{@dark-blue},bold" set-option -g message-style bg=colour239,fg=colour223