-
Notifications
You must be signed in to change notification settings - Fork 11
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Support native notification icons #8
Comments
Hi, what do you mean by native icon ? not setting an icon at all and let |
Huh, not setting an Icon will throw an exception: public static void main(String [] args) {
Notifier notifier = new SendNotification()
.initNotifier();
Notification notification = Notification.builder().level(Notification.Level.WARNING).message("test test test")
.title("hello")
.subtitle("world")
.build();
notifier.send(notification);
notifier.close();
System.out.println("exiting");
System.exit(0);
} results in: |
An icon is mandatory at the moment, because I haven't got any case where I don't need one. |
I am using linux notify-send module and I would want to use native icon instead of specifying one but API do not support it.
Please would you consider this feature ?
The text was updated successfully, but these errors were encountered: