europa: add title to kdialog traygent commands

This commit is contained in:
Aaron Bieber 2023-11-09 19:58:28 -07:00
parent a2e85c2235
commit 99f727e518
No known key found for this signature in database

View File

@ -17,12 +17,12 @@ let
}
{
command_path = "${pkgs.kdialog}/bin/kdialog";
command_args = [ "--passivepopup" "SSH Key Added" "5" ];
command_args = [ "--title" "traygent" "--passivepopup" "SSH Key Added" "5" ];
event = "added";
}
{
command_path = "${pkgs.kdialog}/bin/kdialog";
command_args = [ "--passivepopup" "SSH Key Removed" "5" ];
command_args = [ "--title" "traygent" "--passivepopup" "SSH Key Removed" "5" ];
event = "removed";
}
];