diff options
| author | LawAbidingCactus <lawabidingcactus@lawabidingcactus.com> | 2020-01-03 04:03:16 +0000 |
|---|---|---|
| committer | LawAbidingCactus <lawabidingcactus@lawabidingcactus.com> | 2020-01-03 04:04:58 +0000 |
| commit | 67cf7bbe3b308f15d7d400a9389cbfaccdcdb510 (patch) | |
| tree | bdffb8ccb8433f2475c50c28738bb227fc11457b | |
| parent | 1c7b0152b78ea7bc4db362b68c4db5f5e7882756 (diff) | |
add status update interval to colorscheme
| -rw-r--r-- | README.md | 5 | ||||
| -rw-r--r-- | tmux-colorscheme.conf | 20 |
2 files changed, 13 insertions, 12 deletions
@@ -35,8 +35,3 @@ set-option -as terminal-overrides ",xterm*:RGB" ### Pane separator lines look weird Something isn't correctly handling UTF-8 line drawing characters. - -### The statusbar's time doesn't update fast enough -```tmux -set-option -g status-interval 1 -``` diff --git a/tmux-colorscheme.conf b/tmux-colorscheme.conf index 7960323..c5b6a1d 100644 --- a/tmux-colorscheme.conf +++ b/tmux-colorscheme.conf @@ -1,4 +1,16 @@ -### TMUX COLORSCHEME ### +### theme settings ### + +# window separators +set-option -wg window-status-separator "" + +# monitor window changes +set-option -wg monitor-activity on +set-option -wg monitor-bell on + +# set statusbar update interval +set-option -g status-interval 1 + +### colorscheme ### # change window screen colors set-option -wg mode-style bg="#FE8019",fg="#3C3836" @@ -35,12 +47,6 @@ set-option -g display-panes-colour "#3C3836" # clock set-option -wg clock-mode-colour "#FE8019" -# window separators -set-option -wg window-status-separator "" -# monitor window changes -set-option -wg monitor-activity on -set-option -wg monitor-bell on - # statusbar formatting # "#fe8019" MUST be in lowercase here (conflicts with statusline alias otherwise) set-option -g status-left "#[fg=#3C3836, bg=#A89984]#{?client_prefix,#[bg=#fe8019] #{session_name} #[bg=#A89984], #{session_name} }" |
