What is the recommended way, from CLI or shell script or cron/timer command to:
- show a notification
I have figured this out from an TJC thread.
notificationtool -o add --application=MyApp --urgency=2 --icon=icon-s-filled-warning "$title" "$body"
works fine.
But this only places a notification in the notification area. It does not show a popup and it does not trigger a sound. So how do I:
- show a popup notification
- trigger a sound
As said I would like to do this without coding an actual application in QML or whatever. Just simple scripting (python is okay if necessary).
Thanks for any pointers!!