mirror of
https://codeberg.org/dnkl/yambar.git
synced 2025-04-20 19:35:44 +02:00
This commit adds the ability to display status information for MPRIS compatible music players. Closes #53
13 lines
278 B
C
13 lines
278 B
C
#pragma once
|
|
|
|
// This header provides an generic interface for different versions of
|
|
// systemd-sdbus.
|
|
|
|
#if defined(HAVE_LIBSYSTEMD)
|
|
#include <systemd/sd-bus.h>
|
|
#elif defined(HAVE_LIBELOGIND)
|
|
#include <elogind/sd-bus.h>
|
|
#elif defined(HAVE_BASU)
|
|
#include <basu/sd-bus.h>
|
|
#endif
|
|
|