You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
currently, tabbedex will show an activity indicator for all these cases:
something appears on stdout
something appears on stderr
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.
The text was updated successfully, but these errors were encountered:
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:
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.$? -eq 0, or $ ? -gt 0.
The third case could even be split up in 2 cases: the
The text was updated successfully, but these errors were encountered: