From 0b8a92a4f88117cdbdb4b9863fc021b6a6f7c3cc Mon Sep 17 00:00:00 2001 From: Daniel Thwaites Date: Sun, 16 Jul 2023 18:08:13 +0100 Subject: [PATCH] Ignore failures in KDE activation script :bug: Although it doesn't check whether the function call succeeded, the command still fails if it's not able to connect to dbus. --- modules/kde/hm.nix | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/modules/kde/hm.nix b/modules/kde/hm.nix index 62911c78..97770240 100644 --- a/modules/kde/hm.nix +++ b/modules/kde/hm.nix @@ -154,7 +154,8 @@ in { --dest=org.kde.plasmashell \ /PlasmaShell \ org.kde.PlasmaShell.evaluateScript \ - string:${lib.escapeShellArg script} + string:${lib.escapeShellArg script} \ + || true ''; }; }