diff options
author | Saumit Dinesan <justsaumit@protonmail.com> | 2023-12-06 12:21:23 +0530 |
---|---|---|
committer | Saumit Dinesan <justsaumit@protonmail.com> | 2023-12-06 12:21:23 +0530 |
commit | 2764b3f72c81f081e14865c0e23915609f9c331e (patch) | |
tree | 257f6eec134652c51e7ba63cb66241f71c978177 /.config/tmux | |
parent | 5b220ca7c9e1d4d98e150760b20f042988855e98 (diff) |
.config: Adding missing configs-dunst,mpv,swaylock,tmux,vim,zathura
Diffstat (limited to '.config/tmux')
-rw-r--r-- | .config/tmux/tmux.conf | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/.config/tmux/tmux.conf b/.config/tmux/tmux.conf new file mode 100644 index 0000000..0023540 --- /dev/null +++ b/.config/tmux/tmux.conf @@ -0,0 +1,20 @@ +#Unbind default prefix key and bind it to Ctrl+Space +unbind C-b +set -g prefix C-space + +# Start window numbering at 1 +set -g base-index 1 +# mouse support +set -g mouse on + +#george hotz +set -g status-position bottom +set -g status-bg colour234 +set -g status-fg colour137 +set -g status-left '' +set -g status-right '#[fg=colour233,bg=colour241,bold] %d/%m #[fg=colour233,bg=colour245,bold] %H:%M:%S ' +set -g status-right-length 50 +set -g status-left-length 20 + +setw -g window-status-current-format ' #I#[fg=colour250]:#[fg=colour255]#W#[fg=colour50]#F ' +setw -g window-status-format ' #I#[fg=colour237]:#[fg=colour250]#W#[fg=colour244]#F ' |