Add notification sound on Linux.
This commit is contained in:
parent
eb907e8e36
commit
5b0747d960
@ -23,11 +23,13 @@ proc getVal(cfg: CombinedConfig, key, default: string): string =
|
|||||||
elif cfg.json.hasKey(jsonKey): return cfg.json[jsonKey].getStr
|
elif cfg.json.hasKey(jsonKey): return cfg.json[jsonKey].getStr
|
||||||
else: return default
|
else: return default
|
||||||
|
|
||||||
const VERSION = "0.2.1"
|
const VERSION = "0.2.2"
|
||||||
const timeFmt = "HH:mm"
|
const timeFmt = "HH:mm"
|
||||||
|
|
||||||
var args: Table[string, Value]
|
var args: Table[string, Value]
|
||||||
var cfg: DPConfig
|
var cfg: DPConfig
|
||||||
|
let appName = getAppFilename()
|
||||||
|
let soundFile = appName[0..(appName.len-15)] & "sounds/notify1.ogg"
|
||||||
|
|
||||||
proc parseDailyPlan(filename: string): seq[PlanItem] =
|
proc parseDailyPlan(filename: string): seq[PlanItem] =
|
||||||
|
|
||||||
@ -64,6 +66,8 @@ proc notifyDailyPlanItem(item: PlanItem): void =
|
|||||||
|
|
||||||
of "linux":
|
of "linux":
|
||||||
discard execShellCmd("notify-send 'Daily Notifier v" & VERSION & "' '" & item.note & "'")
|
discard execShellCmd("notify-send 'Daily Notifier v" & VERSION & "' '" & item.note & "'")
|
||||||
|
discard execShellCmd("paplay \"" & soundFile & "\"")
|
||||||
|
echo "paplay \"" & soundFile & "\""
|
||||||
|
|
||||||
else: quit("Unsupported host OS: '" & hostOS & "'.")
|
else: quit("Unsupported host OS: '" & hostOS & "'.")
|
||||||
|
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
# Package
|
# Package
|
||||||
|
|
||||||
version = "0.2.1"
|
version = "0.2.2"
|
||||||
author = "Jonathan Bernard"
|
author = "Jonathan Bernard"
|
||||||
description = "Little programs that reads my daily plan and notifies me of upcoming events."
|
description = "Little programs that reads my daily plan and notifies me of upcoming events."
|
||||||
license = "MIT"
|
license = "MIT"
|
||||||
|
Loading…
x
Reference in New Issue
Block a user