internal: fix app name for notifications (#158)

This commit is contained in:
Sepandar 2026-05-05 23:02:03 +00:00 committed by GitHub
parent 8c163ce9b8
commit 0da95c0eda
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -13,7 +13,7 @@
void NNotify::send(std::string hexColor, std::string formattedColor) {
std::string notifyBody = std::format("<span>Selected color: <span color='{}'><b>{}</b></span></span>", 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();
}