According to the source code of tmux (version 1.8 at hand) ( server_window_check_activity(), server-window.c), the corresponding option visual-activitythat you currently set to on:
if (options_get_number(&s->options, "visual-activity")) {
for (i = 0; i < ARRAY_LENGTH(&clients); i++) {
c = ARRAY_ITEM(&clients, i);
if (c == NULL || c->session != s)
continue;
status_message_set(c, "Activity in window %u",
winlink_find_by_window(&s->windows, w)->idx);
}
}
EDIT:
Same function, slightly higher:
if (!options_get_number(&w->options, "monitor-activity"))
return (0);
monitor-activity .
2:
;)