diff options
Diffstat (limited to 'config')
-rw-r--r-- | config/aerc.conf.in | 6 | ||||
-rw-r--r-- | config/config.go | 2 |
2 files changed, 8 insertions, 0 deletions
diff --git a/config/aerc.conf.in b/config/aerc.conf.in index 55dfa13..4d0f9fd 100644 --- a/config/aerc.conf.in +++ b/config/aerc.conf.in @@ -37,6 +37,12 @@ empty-dirlist=(no folders) # Default: false mouse-enabled=false +# +# Ring the bell when new messages are received +# +# Default: yes +new-message-bell=true + [viewer] # # Specifies the pager to use when displaying emails. Note that some filters diff --git a/config/config.go b/config/config.go index 8ba705c..bfcbecf 100644 --- a/config/config.go +++ b/config/config.go @@ -32,6 +32,7 @@ type UIConfig struct { EmptyMessage string `ini:"empty-message"` EmptyDirlist string `ini:"empty-dirlist"` MouseEnabled bool `ini:"mouse-enabled"` + NewMessageBell bool `ini:"new-message-bell"` } const ( @@ -344,6 +345,7 @@ func LoadConfigFromFile(root *string, sharedir string) (*AercConfig, error) { EmptyMessage: "(no messages)", EmptyDirlist: "(no folders)", MouseEnabled: false, + NewMessageBell: true, }, Viewer: ViewerConfig{ |