diff options
| author | David Kaufmann <astra@ionic.at> | 2017-09-07 18:52:21 +0200 |
|---|---|---|
| committer | David Kaufmann <astra@ionic.at> | 2017-09-07 18:52:21 +0200 |
| commit | 2ab924bb1dce6c27a3b54d0d91f7f3038f6b4568 (patch) | |
| tree | 36cc12ebaabc7d5408e4191febe18558fa16b2ec /home | |
| parent | 684b42f64ad853d278b89fb279035fc89d15162a (diff) | |
| download | config-2ab924bb1dce6c27a3b54d0d91f7f3038f6b4568.tar.gz | |
fix visual bell issue
Diffstat (limited to 'home')
| -rw-r--r-- | home/.tmux.conf | 15 |
1 files changed, 12 insertions, 3 deletions
diff --git a/home/.tmux.conf b/home/.tmux.conf index de2cf48..4cc2c59 100644 --- a/home/.tmux.conf +++ b/home/.tmux.conf @@ -18,12 +18,21 @@ set-option -g history-limit 16000 #set-option -g default-terminal screen-256color set-option -g default-terminal rxvt -# loud or quiet? +# Set action on window bell. any means a bell in any window linked to a +# session causes a bell in the current window of that session, none means +# all bells are ignored and current means only bell in windows other than +# the current window are ignored. +set-option -g bell-action any +# If on, ring the terminal bell when an activity, content or silence alert +# occurs. +set-option -g bell-on-alert on + +# visual-activity: on = status line message, off = bell on monitor-activity set-option -g visual-activity off +# visual-bell: on = status line message on bell, off = pass bell through to terminal set-option -g visual-bell off +# visual-silence: on = status line message, off = bell on monitor-silence set-option -g visual-silence off -set-window-option -g monitor-activity on -set-option -g bell-action none # mouse options changed in v2.1 # enable mouse support |
