From 6cbe20f12f524030d837a615d65def92ac102f11 Mon Sep 17 00:00:00 2001 From: eladyn Date: Mon, 24 Feb 2025 22:07:59 +0100 Subject: [PATCH] docs: remove duplicate troubleshooting info --- docs/src/advanced/dbus.md | 24 ------------------------ 1 file changed, 24 deletions(-) diff --git a/docs/src/advanced/dbus.md b/docs/src/advanced/dbus.md index d11783ba..86ad696c 100644 --- a/docs/src/advanced/dbus.md +++ b/docs/src/advanced/dbus.md @@ -116,27 +116,3 @@ else echo "No active spotifyd playback." fi ``` - -## Troubleshooting - -### "Failed to initialize DBus connection" on a headless system - -Where no graphical session is available, the system bus can be used by setting the `dbus_type` configuration option to `system`. - -### "Failed to register dbus player name" using the system bus - -`Spotifyd` may not have permission to register the D-Bus service due to D-Bus security policies. It should be granted permission to own any service with the prefix "org.mpris.MediaPlayer2.spotifyd". - -For example, this statement can be added to the default policy in `/usr/share/dbus-1/system.conf`. - -```xml - -``` - -It may also be necessary to add a statement to allow clients to send messages. - -```xml - -``` - -Make sure to reload the D-Bus configuration after making changes. For example `sudo systemctl reload dbus`.