From f88983e015e504c50c0afe43e82e909249988e4e Mon Sep 17 00:00:00 2001 From: Sepandar Date: Sat, 2 May 2026 10:08:38 -0700 Subject: [PATCH] added app name --- src/notify/Notify.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/notify/Notify.cpp b/src/notify/Notify.cpp index 5379afa..27a9780 100644 --- a/src/notify/Notify.cpp +++ b/src/notify/Notify.cpp @@ -13,7 +13,7 @@ void NNotify::send(std::string hexColor, std::string formattedColor) { std::string notifyBody = std::format("Selected color: {}", hexColor, formattedColor); - Hyprutils::OS::CProcess notify("notify-send", {"-t", "5000", "-i", "color-select-symbolic", "Color Picker", notifyBody}); + Hyprutils::OS::CProcess notify("notify-send", {"-a", "hyprpicker", "-t", "5000", "-i", "color-select-symbolic", "Color Picker", notifyBody}); notify.runAsync(); }