diff options
author | Ben Burwell <ben@benburwell.com> | 2019-07-29 10:50:02 -0400 |
---|---|---|
committer | Drew DeVault <sir@cmpwn.com> | 2019-07-29 15:01:49 -0400 |
commit | 152f8c9519ac1b7b35c3789b03f3d1cc3b1e8881 (patch) | |
tree | 0c8693aa2651955d0e12f090f5469c7183e190d3 /widgets/account.go | |
parent | 2804f000017c0ef6bcaf8d571627fa08784f48ac (diff) | |
download | aerc-152f8c9519ac1b7b35c3789b03f3d1cc3b1e8881.tar.gz |
Ring bell when new messages arrive 0.2.0
Add a "new-message-bell" option to the UI section of aerc.conf. A new hook into the message store allows the msglist widget to detect new messages being added to the displayed list. When new messages are delivered, and the new-message-bell option is enabled (as it is by default), the terminal will beep.
Diffstat (limited to 'widgets/account.go')
-rw-r--r-- | widgets/account.go | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/widgets/account.go b/widgets/account.go index 86ec00c..de81ab8 100644 --- a/widgets/account.go +++ b/widgets/account.go @@ -205,6 +205,10 @@ func (acct *AccountView) onMessage(msg types.WorkerMessage) { func(msg *models.MessageInfo) { acct.conf.Triggers.ExecNewEmail(acct.acct, acct.conf, msg) + }, func() { + if acct.conf.Ui.NewMessageBell { + acct.host.Beep() + } }) acct.dirlist.SetMsgStore(msg.Info.Name, store) store.OnUpdate(func(_ *lib.MessageStore) { |