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(); }