ntfy
ntfy copied to clipboard
🖥️📱🔔 A utility for sending notifications, on demand and when commands finish.
I was only able to figure out the cause for the exception detailed in https://github.com/dschep/ntfy/issues/260 after adding the logging statements found in the PR. It would make sense to add...
First of all thank you for that awesome tool :) I tried to ignore VS Code by adding `export AUTO_NTFY_DONE_IGNORE="vim screen meld code"` on Mac OSX. I kinda expected that...
hello, I love the tool so versatile and useful i think this could be a great idea to support customizing the icon based on the result code exemple: "✅ sleep...
In python3.11 `inspect.getargspec` removed at last (after deprecation in 3.0). Proposed fix: ```python try: from inspect import getargspec except ImportError: from inspect import getfullargspec def getargspec(f): return tuple(getfullargspec(f))[:4] ```
plz give more advice
I have motorola g82 phone with android 12. Ntfy doesn't start when phone reboots and there seems to be no option. As far as I can see, [there is permission](https://stackoverflow.com/questions/1056570/how-to-auto-start-an-android-application)...
Telegram was broken giving me this error: RuntimeWarning: coroutine 'configure' was never awaited telegram-send version is 0.37, installed automatically when calling pip install ntfy[telegram] Turns out now it needs to...
Add [a `logging.Handler` sub-class](https://docs.python.org/3/howto/logging.html#handlers) so that Python projects can re-use a user's `~/.ntfy.yml` configuration to send application-specific notifications using its `logging` configuration. An application could then use its `logging` configuration...
This could be an easy way to enable better parametric filtering of commands + subcommands. For example I might not want to have a notification for git commit (because git...
I installed ntfy with telegram backend: ``` pip install ntfy[telegram] ``` but when I do the first run, I get a strange errors: ``` ntfy -b telegram -v -l DEBUG...