Channel Monitor
A pane for monitoring all messages in a collection of channels (by default, all channels).
exclude
Exclusion conditions for channels which will not appear in Channel Monitor.
toml
[channel_monitor]
exclude = { channels = ["#noisy-channel"] }To exclude a channel only on a specific server, use a combined criterion.
toml
[channel_monitor]
exclude = { criteria = [{ server = "libera", channel = "#noisy-channel" }] }include
Inclusion conditions take precedence over exclusion conditions. To show only selected channels, exclude everything and then include those channels.
toml
[channel_monitor]
exclude = "all"
include = { channels = ["#halloy", "##rust"] }