I'm wokring a simple cli tool for linux where sending desktop notification is required, initially i'm using **notify-send** to send notification on ubuntu and it works fine. after moving to Debian 12 KDE version, I found out that KDE has it's own notification handling program called **kdialog** so as other Desktop environments.
I tried installing notify-send in my debian KDE system using apt but no such package is available. I can only see notify-osd instead.
I'm looking for a way to send notifications using a common a program or a library like libnotify which is by default present in every linux distro so that I can run my tool on any distro without worrying about installing dependency for send notification.