From 0da95c0eda1a74180568aa074093ef87011d2fbb Mon Sep 17 00:00:00 2001 From: Sepandar <116840915+flashrun24@users.noreply.github.com> Date: Tue, 5 May 2026 23:02:03 +0000 Subject: [PATCH] internal: fix app name for notifications (#158) --- 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(); }