fix(eyecare): reflect configurable break duration in notification message (#92)
Fixes #63
This commit is contained in:
+1
-1
@@ -1,6 +1,6 @@
|
||||
id = "apex077/eyecare"
|
||||
name = "Eye-Care Reminders"
|
||||
version = "1.0.0"
|
||||
version = "1.0.1"
|
||||
plugin_api = 3
|
||||
author = "Apex077"
|
||||
license = "MIT"
|
||||
|
||||
@@ -24,6 +24,7 @@ local settings = getSettings()
|
||||
function onConfigChanged()
|
||||
settings = getSettings()
|
||||
noctalia.log("eyecare: settings updated")
|
||||
updateState()
|
||||
end
|
||||
|
||||
-- Play a notification sound using system players
|
||||
@@ -119,7 +120,7 @@ function update()
|
||||
if settings.enable_notifications then
|
||||
noctalia.notify(
|
||||
noctalia.tr("notifications.eyecare-break-title"),
|
||||
noctalia.tr("notifications.eyecare-break-body")
|
||||
noctalia.tr("notifications.eyecare-break-body", { seconds = settings.break_duration_seconds })
|
||||
)
|
||||
end
|
||||
if settings.enable_sound then
|
||||
@@ -142,7 +143,7 @@ local function triggerBreak()
|
||||
if settings.enable_notifications then
|
||||
noctalia.notify(
|
||||
noctalia.tr("notifications.eyecare-break-title"),
|
||||
noctalia.tr("notifications.eyecare-break-body")
|
||||
noctalia.tr("notifications.eyecare-break-body", { seconds = settings.break_duration_seconds })
|
||||
)
|
||||
end
|
||||
if settings.enable_sound then
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
{
|
||||
"notifications": {
|
||||
"eyecare-break-body": "Focus on an object 20 feet away for 20 seconds.",
|
||||
"eyecare-break-body": "Focus on an object 20 feet away for {seconds} seconds.",
|
||||
"eyecare-break-finished-body": "Your eyes are rested. You can return to your screen.",
|
||||
"eyecare-break-finished-title": "Break finished",
|
||||
"eyecare-break-title": "Time for a break"
|
||||
|
||||
Reference in New Issue
Block a user