diff options
author | Mike Gabriel <mike.gabriel@das-netzwerkteam.de> | 2022-02-28 21:46:20 +0100 |
---|---|---|
committer | Mike Gabriel <mike.gabriel@das-netzwerkteam.de> | 2022-02-28 21:46:20 +0100 |
commit | fb42e141a8335ed8b415f860c80c7cdbdf76410c (patch) | |
tree | f4c4cf040c253270d76bbc6991df5b24d40abf6a /src | |
parent | 8e990c91411ce1fe798eb16019e2543b40fc828b (diff) | |
parent | 0a4e2ee68299b15e43651e265ead1cf6d1d5e419 (diff) | |
download | ayatana-indicator-power-fb42e141a8335ed8b415f860c80c7cdbdf76410c.tar.gz ayatana-indicator-power-fb42e141a8335ed8b415f860c80c7cdbdf76410c.tar.bz2 ayatana-indicator-power-fb42e141a8335ed8b415f860c80c7cdbdf76410c.zip |
Merge branch 'tari01-pr/get-sounds-path-from-lomniri-sounds'
Attributes GH PR #59: https://github.com/AyatanaIndicators/ayatana-indicator-power/pull/59
Diffstat (limited to 'src')
-rw-r--r-- | src/notifier.c | 12 |
1 files changed, 8 insertions, 4 deletions
diff --git a/src/notifier.c b/src/notifier.c index ba30ae5..e833e72 100644 --- a/src/notifier.c +++ b/src/notifier.c @@ -1,6 +1,6 @@ /* * Copyright 2014-2016 Canonical Ltd. - * Copyright 2021 Robert Tari + * Copyright 2021-2022 Robert Tari * * This program is free software: you can redistribute it and/or modify it * under the terms of the GNU General Public License version 3, as published @@ -22,7 +22,11 @@ #include "datafiles.h" #ifdef LOMIRI_FEATURES_ENABLED -#include "dbus-accounts-sound.h" + #include "dbus-accounts-sound.h" +#endif + +#ifndef LOMIRI_SOUNDSDIR + #define LOMIRI_SOUNDSDIR "" #endif #include "dbus-battery.h" @@ -322,8 +326,8 @@ notification_show(IndicatorPowerNotifier * self) } else { - g_message("Unable to find '%s' in XDG data dirs, falling back to /usr/share/sounds/lomiri/notifications/", LOW_BATTERY_SOUND); - notify_notification_set_hint(nn, "sound-file", g_variant_new_string("file:///usr/share/sounds/lomiri/notifications/" LOW_BATTERY_SOUND)); + g_message("Unable to find '%s' in XDG data dirs, falling back to %s/notifications/", LOMIRI_SOUNDSDIR, LOW_BATTERY_SOUND); + notify_notification_set_hint(nn, "sound-file", g_variant_new_string("file://" LOMIRI_SOUNDSDIR "/notifications/" LOW_BATTERY_SOUND)); } } |