From 49a59183d219d676c670f224f76fc9f590f2cd0d Mon Sep 17 00:00:00 2001 From: Matti Viljanen Date: Sun, 23 May 2021 15:30:31 +0300 Subject: [PATCH] Switch low battery and general alarm sounds --- service/src/settings.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/service/src/settings.h b/service/src/settings.h index 55c39f3..ecaab70 100644 --- a/service/src/settings.h +++ b/service/src/settings.h @@ -81,9 +81,9 @@ private: int lowLimit = 65; int highLimit = 70; - QString lowAlertFile = "/usr/share/sounds/jolla-ambient/stereo/general_warning.wav"; + QString lowAlertFile = "/usr/share/sounds/jolla-ambient/stereo/battery_low.wav"; QString highAlertFile = "/usr/share/sounds/jolla-ambient/stereo/positive_confirmation.wav"; - QString healthAlertFile = "/usr/share/sounds/jolla-ambient/stereo/battery_low.wav"; + QString healthAlertFile = "/usr/share/sounds/jolla-ambient/stereo/general_warning.wav"; QString notificationTitle; QString notificationLowText; QString notificationHighText;