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:
parent
a8a7522ff0
commit
0e0b24daba
1 changed files with 1 additions and 1 deletions
|
@ -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:
|
||||
|
|
Loading…
Reference in a new issue