Add notification sound on Linux.

This commit is contained in:
Jonathan Bernard 2016-11-03 16:21:56 -05:00
parent eb907e8e36
commit 5b0747d960
2 changed files with 6 additions and 2 deletions

View File

@ -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 & "'.")

View File

@ -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"