diff options
| author | jstmax! <maxwasmailed@proton.me> | 2025-10-23 01:07:13 +0200 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2025-10-23 01:07:13 +0200 |
| commit | cfaf038381318f496abdb317945ae863ef08908a (patch) | |
| tree | 21bc1ebe584c1c98f0cf157dd25cc8c37c438e84 /cfg | |
| parent | 7e7fc71246442e01f83812802138ddf9322737a4 (diff) | |
update tmux cfg
Diffstat (limited to 'cfg')
| -rw-r--r-- | cfg/.tmux.conf | 44 |
1 files changed, 36 insertions, 8 deletions
diff --git a/cfg/.tmux.conf b/cfg/.tmux.conf index 70830ac..7a93bb9 100644 --- a/cfg/.tmux.conf +++ b/cfg/.tmux.conf @@ -1,7 +1,7 @@ ## jmのtmuxのcfg ## # ### ### ### ### ### ### # -# ^[space] instead of ^b +# { ^[_] | * | ^; } instead of ^b unbind C-b set -g prefix C-Space bind C-Space send-prefix @@ -9,6 +9,7 @@ set -g prefix C-Space bind C-Space send-prefix set -g prefix2 '*' bind '*' send-prefix +bind C-; send-prefix # commodity # splits @@ -27,15 +28,42 @@ bind x kill-pane bind q kill-pane # customization to make tmux fit in with the rice! -# colours -set -g status-bg '#0f0f0f' -set -g status-fg '#f82323' -# -set -g status-style "bg=#0f0f0f,fg=#f82323" -set -g status-left '' -set -g status-right '' set -g status-interval 5 +set -g visual-activity off +set -g visual-bell off +set -g visual-silence off +setw -g monitor-activity off +set -g bell-action none + +setw -g clock-mode-colour red + +setw -g mode-style 'fg=red bg=black' + +set -g pane-border-style 'fg=black' +set -g pane-active-border-style 'fg=red' + +set -g status-position bottom +set -g status-justify left +set -g status-style 'fg=red' + +set -g status-left '' +set -g status-left-length 10 + +set -g status-right-style 'fg=red bg=black' +set -g status-right '%Y-%m-%d %H:%M ' +set -g status-right-length 50 + +setw -g window-status-current-style 'fg=red bg=black' +setw -g window-status-current-format ' #I #W #F ' + +setw -g window-status-style 'fg=red bg=black' +setw -g window-status-format ' #I #[fg=red]#W #[fg=black]#F ' + +setw -g window-status-bell-style 'fg=red bg=black' + +set -g message-style 'fg=red bg=black' + # workspace cfg # i3-style workspace jump or create bind -r 0 run "tmux select-window -t 0 2>/dev/null || tmux new-window -t 0 -n 0" |