diff options
author | Sergio Pastor Pérez <sergio.pastorperez@gmail.com> | 2025-05-03 16:26:16 +0200 |
---|---|---|
committer | Zheng Junjie <z572@z572.online> | 2025-05-04 17:58:56 +0800 |
commit | cea6eedfcea2defa526bc58d4fb2085cc8c0cb36 (patch) | |
tree | 7a66b74427853d8fcd4f00ae74832634b3c95ca5 | |
parent | 3e16c0af80fc279dc4d42c9c1e837cea19dde8a5 (diff) |
services: plasma: Fix kded not being started.
`kded' is a daemon responsible for many features of the Plasma desktop, it
provides media keys handling, a system tray, 'Background Services' control
through 'kcmshell6 kcm_kded'...
* gnu/packages/kde-plasma.scm (plasma): Add `kded' to propagated inputs.
* gnu/services/desktop.scm (plasma-dbus-service): Add `kded' to the list of
services passed to `dbus-configuration'.
Change-Id: Ifffdaecdb28a6369727ab8d118a775d73ee342e9
Signed-off-by: Zheng Junjie <z572@z572.online>
-rw-r--r-- | gnu/packages/kde-plasma.scm | 1 | ||||
-rw-r--r-- | gnu/services/desktop.scm | 1 |
2 files changed, 2 insertions, 0 deletions
diff --git a/gnu/packages/kde-plasma.scm b/gnu/packages/kde-plasma.scm index efaae01aa9..8991dcf974 100644 --- a/gnu/packages/kde-plasma.scm +++ b/gnu/packages/kde-plasma.scm @@ -1717,6 +1717,7 @@ on top of Baloo.") kde-cli-tools kdecoration kde-gtk-config + kded kdeplasma-addons kglobalaccel kglobalacceld diff --git a/gnu/services/desktop.scm b/gnu/services/desktop.scm index 2127c2d389..fade9e0e14 100644 --- a/gnu/services/desktop.scm +++ b/gnu/services/desktop.scm @@ -2255,6 +2255,7 @@ rules." "kwalletmanager" "powerdevil" "bluedevil" + "kded" "kwallet" "plasma-firewall")))) |