aboutsummaryrefslogtreecommitdiff
path: root/src/Notification.cpp
diff options
context:
space:
mode:
authordec05eba <dec05eba@protonmail.com>2022-10-13 01:15:34 +0200
committerdec05eba <dec05eba@protonmail.com>2022-10-13 01:15:34 +0200
commitb84e8b4c8fdab76d85b184600b234923c3c3526d (patch)
treed2622e5db9440c1cbfead5dffb6df08bbc6bc760 /src/Notification.cpp
parente4d89350e2f239a833f7f337dd858570e7b52712 (diff)
Remove myanimelist (unused code)
Diffstat (limited to 'src/Notification.cpp')
-rw-r--r--src/Notification.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/Notification.cpp b/src/Notification.cpp
index 791f4b2..848c74d 100644
--- a/src/Notification.cpp
+++ b/src/Notification.cpp
@@ -19,7 +19,7 @@ namespace QuickMedia {
void show_notification(const std::string &title, const std::string &description, Urgency urgency) {
fprintf(stderr, "Notification: title: %s, description: %s\n", title.c_str(), description.c_str());
- const char *args[] = { "notify-send", "-t", "10000", "-u", urgency_string(urgency), "--", title.c_str(), description.c_str(), nullptr };
+ const char *args[] = { "notify-send", "-a", "QuickMedia", "-t", "10000", "-u", urgency_string(urgency), "--", title.c_str(), description.c_str(), nullptr };
exec_program_async(args, nullptr);
}
-} \ No newline at end of file
+}