NotiFyre
NotiFyre copied to clipboard
Notify when a terminal task is done/ Terminal task notifier https://kaustubhhiware.github.io/NotiFyre/
If an email flag is set, send an email to notify task completion. Will be useful on headless sessions and tasks running on servers. We could use Mailutils or cURL...
If I edit file use vi for 10 minutes, exit vi will pop a notification tell me vi 10 minutes, that's not reasonable. waiting exit code means open gui conflict...
Issue: Whenever a command completes in my terminal, a notification is popped-up which sometimes conceals after five seconds or I have to manually click on the 'cross' icon. This behavior...
Not sure how this could be done, thus opening an issue. In the initial testing I've been doing, I like the project but there's one thing that holds me back...
Variable names like `SOUND` etc are quite common to be accidentally set up/conflict with some other tools. Recommend prefixing with `NOTIFY_` for ease. Example: `NOTIFY_SOUND`, `NOTIFY_MIN_INTERVAL` etc.
This is by far, the easiest task. The variable names in bash are standardised as seen [here](https://github.com/kaustubhhiware/NotiFyre#configuration), but in [fish](https://github.com/kaustubhhiware/NotiFyre#configuration-1) they are not. We just need to rename the variables...
We can make full use of the inherit advantages of other languages, by adding alternatives in different languages. Some alternatives off the top could be python, ruby, javascript.
As far as I know, elementary os brings the terminal to focus, when a notification is clicked. Something similar is needed. Alternatively, `lib-notify` can be used, and support for buttons...
Some commands are long running (like `npm install` or `wget -R`) and those are the only ones I would be interested in notifications for. Would you be interested in adding...