-
Notifications
You must be signed in to change notification settings - Fork 74
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
Windows Toast shows PowerShell #219
Comments
I just noticed the same thing. I took a look at the code and found out that it's passing Note Please take a look at the below from
|
I was playing around with Tauri's winrt-notification and I was able to set a custom name and icon for the notification. All you need to do is create a new key in
Code snippet: use tauri_winrt_notification::Sound;
use tauri_winrt_notification::Toast;
Toast::new("FirefoxToast-CA9422711AE1A81C")
.title("Look at this flip!")
.text1("(╯°□°)╯︵ ┻━┻")
.add_button("OK", "ok")
.sound(Some(Sound::Default))
.show()
.expect("unable to toast"); |
Using notify-rust on Windows shows that the toast comes from Windows PowerShell.
I've tried using appname but that doesn't seem to do anything.
Is there a way to use a custom application name for the toasts on Windows?
The text was updated successfully, but these errors were encountered: