Remove playerctl from dependencies and add pactl providers

This commit is contained in:
Elara 2021-11-24 16:50:35 -08:00
parent e9a611aec8
commit 4b8b2a3b22
1 changed files with 4 additions and 6 deletions

View File

@ -15,28 +15,26 @@ This library's import path is `go.arsenm.dev/infinitime`.
### Dependencies ### 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 #### Arch
```shell ```shell
sudo pacman -S dbus bluez playerctl --needed sudo pacman -S dbus bluez libpulse --needed
``` ```
#### Debian/Ubuntu #### Debian/Ubuntu
```shell ```shell
sudo apt install dbus bluez playerctl sudo apt install dbus bluez pulseaudio-utils
``` ```
#### Fedora #### Fedora
```shell ```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 ### Features