mirror of
https://github.com/hyprwm/hyprpicker.git
synced 2026-05-08 21:18:02 +02:00
internal: fix app name for notifications (#158)
This commit is contained in:
parent
8c163ce9b8
commit
0da95c0eda
1 changed files with 1 additions and 1 deletions
|
|
@ -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();
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue