ports/x11/plank/files/patch-lib_Services_EnvironmentSettings.vala
Olivier Duchateau 762c4afd13 x11/plank: update to 0.11.100
ChangeLog:
https://github.com/zquestz/plank-reloaded/blob/0.11.100/NEWS.md#011100-reloaded-2024-12-18

 * Updates for Cinnamon compatibility
 * Battery Docklet updated to use UPower
 * Fixed settings crash for Clock Docklet
 * Code cleanup

PR:		284396
Reported by:	duchateau.olivier@gmail.com
Approved by:	daniel@shafer.cc (maintainer, timeout > 2 weeks)
2025-02-20 14:40:51 +01:00

11 lines
694 B
Vala

--- lib/Services/EnvironmentSettings.vala.orig 2025-01-08 03:02:39 UTC
+++ lib/Services/EnvironmentSettings.vala
@@ -93,7 +93,7 @@ namespace Plank
public static unowned PantheonDesktopNotifications? try_get_instance ()
{
if (instance == null) {
- var settings = try_create_settings ("org.pantheon.desktop.gala.notifications");
+ var settings = try_create_settings ("io.elementary.notifications");
if (settings != null && ("do-not-disturb" in settings.list_keys ()))
instance = (PantheonDesktopNotifications) Object.new (typeof (PantheonDesktopNotifications),
"settings", settings, "bind-flags", SettingsBindFlags.GET | SettingsBindFlags.INVERT_BOOLEAN, null);