Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
25 changes: 25 additions & 0 deletions linux/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -43,6 +43,31 @@ A native Linux application to control your AirPods, with support for:
# For Fedora
sudo dnf install openssl-devel
```
4. Libpulse development headers

```bash
# On Arch Linux / EndevaourOS, these are included in the libpulse package, so you might already have them installed.
sudo pacman -S libpulse

# For Debian / Ubuntu
sudo apt-get install libpulse-dev

# For Fedora
sudo dnf install pulseaudio-libs-devel
```
5. Cmake

```bash
# For Arch Linux / EndeavourOS
sudo pacman -S cmake

# For Debian / Ubuntu
sudo apt-get install cmake

# For Fedora
sudo dnf install cmake
```

## Setup

1. Build the application:
Expand Down