pynotifier
pynotifier copied to clipboard
Python notifications
It would be useful to have an ability to: - update existing notification with new content - close existing notification Or maybe I'm just missing some way to do this?
I used this code: `from pynotifier import Notification Notification( title='Notification Title', description='Notification Description', icon_path='icons/bitcoin.png', # On Windows .ico is required, on Linux - .png duration=5, # Duration in seconds urgency='normal'...
I have customized most of the notification using this module. But the only thing left to change is app name. It is showing 'Python' by default. Is it possible to...
Hey. Currently I use `notifier.sh`: ``` #!/usr/bin/env bash set -e # enable notify-send from cron export XDG_RUNTIME_DIR=/run/user/$(id -u) PROJECT_DIR="${HOME}/my_project/" cd "${PROJECT_DIR}" .venv/bin/python main.py if tail -2 some.log | grep -q...
Currently readme has only (quite nice) example of system notification
@YuriyLisovskiy Does this tool work with Python 3.12 and Ubuntu 24.04?