def notifications (progress, timeout):
ICON_PATH = "spotidownload.svg"
n = notify2.Notification(f"SpotiDownload - {progress}", icon = ICON_PATH)
n.set_urgency(notify2.URGENCY_NORMAL)
n.set_timeout(timeout)
n.show()
n.close()