From 4b8b2a3b229d35edf8ff578fbc6fcc896cdd1d2a Mon Sep 17 00:00:00 2001 From: Arsen Musayelyan Date: Wed, 24 Nov 2021 16:50:35 -0800 Subject: [PATCH] Remove playerctl from dependencies and add pactl providers --- README.md | 10 ++++------ 1 file changed, 4 insertions(+), 6 deletions(-) diff --git a/README.md b/README.md index ec84daa..ebc267d 100644 --- a/README.md +++ b/README.md @@ -15,28 +15,26 @@ This library's import path is `go.arsenm.dev/infinitime`. ### Dependencies -This library requires `dbus`, `bluez`, `playerctl`, and `pactl` to function. The first two are for bluetooth, and the last two for music control. +This library requires `dbus`, `bluez`, and `pactl` to function. The first two are for bluetooth, and the last two for music control. #### Arch ```shell -sudo pacman -S dbus bluez playerctl --needed +sudo pacman -S dbus bluez libpulse --needed ``` #### Debian/Ubuntu ```shell -sudo apt install dbus bluez playerctl +sudo apt install dbus bluez pulseaudio-utils ``` #### Fedora ```shell -sudo dnf install dbus bluez playerctl +sudo dnf install dbus bluez pulseaudio-utils ``` -`pactl` comes with `pulseaudio` or `pipewire-pulse` and should therefore be installed on most systems already. - --- ### Features