Update icon path in Tracker class for notify-send command

The commit updates the icon path used in the notify-send command inside the Tracker class. The path to the parcel delivery icon is modified to correctly locate the image file.
This commit is contained in:
Kumi 2023-08-24 15:35:06 +02:00
parent a8a7522ff0
commit 0e0b24daba
Signed by: kumi
GPG key ID: ECBCC9082395383F

View file

@ -60,7 +60,7 @@ class Tracker:
"notify-send",
"-a", "trackbert",
"-u", urgency,
"-i", str(Path(__file__).parent / "assets" / "parcel-delivery-icon.webp"),
"-i", str(Path(__file__).parent.parent / "assets" / "parcel-delivery-icon.webp"),
]
if timeout: