currently, tabbedex will show an activity indicator for all these cases:
1) something appears on stdout
2) something appears on stderr
3) command is executed, prompt is returned.
I would find it useful if I could make different indicators for each of these cases, I don't care much about how many seconds ago it was, but if I'm in another tab, I like to be able to deduce what happened on the other tab. the ability to see whether my command is done versus only some stdout is generated, for example is very useful.
The third case could even be split up in 2 cases: the $? -eq 0, or $? -gt 0.
There is no way for tabbedex to distinguish any of the things you've mentioned. mina86/urxvt-tabbedex has a bell handling though which you might take advantage of. Simply set your PROMPT_COMMAND to printf \a.
currently, tabbedex will show an activity indicator for all these cases: 1) something appears on stdout 2) something appears on stderr 3) command is executed, prompt is returned.
I would find it useful if I could make different indicators for each of these cases, I don't care much about how many seconds ago it was, but if I'm in another tab, I like to be able to deduce what happened on the other tab. the ability to see whether my command is done versus only some stdout is generated, for example is very useful. The third case could even be split up in 2 cases: the $? -eq 0, or $? -gt 0.