diff --git a/daily_notifier.nim b/daily_notifier.nim index 3b8e341..86e691d 100644 --- a/daily_notifier.nim +++ b/daily_notifier.nim @@ -23,11 +23,13 @@ proc getVal(cfg: CombinedConfig, key, default: string): string = elif cfg.json.hasKey(jsonKey): return cfg.json[jsonKey].getStr else: return default -const VERSION = "0.2.1" +const VERSION = "0.2.2" const timeFmt = "HH:mm" var args: Table[string, Value] var cfg: DPConfig +let appName = getAppFilename() +let soundFile = appName[0..(appName.len-15)] & "sounds/notify1.ogg" proc parseDailyPlan(filename: string): seq[PlanItem] = @@ -64,6 +66,8 @@ proc notifyDailyPlanItem(item: PlanItem): void = of "linux": discard execShellCmd("notify-send 'Daily Notifier v" & VERSION & "' '" & item.note & "'") + discard execShellCmd("paplay \"" & soundFile & "\"") + echo "paplay \"" & soundFile & "\"" else: quit("Unsupported host OS: '" & hostOS & "'.") diff --git a/daily_notifier.nimble b/daily_notifier.nimble index 8e58303..62c3dc3 100644 --- a/daily_notifier.nimble +++ b/daily_notifier.nimble @@ -1,6 +1,6 @@ # Package -version = "0.2.1" +version = "0.2.2" author = "Jonathan Bernard" description = "Little programs that reads my daily plan and notifies me of upcoming events." license = "MIT"