From 9a0f0dda4f05fd4ca23ac932716a052e13182525 Mon Sep 17 00:00:00 2001 From: onesaladleaf <180638599+onesaladleaf@users.noreply.github.com> Date: Tue, 30 Sep 2025 02:31:00 +0300 Subject: [PATCH] Add fedora copr instructions --- README.md | 17 +++++++---------- 1 file changed, 7 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index a79bf86..ffe74cc 100644 --- a/README.md +++ b/README.md @@ -99,18 +99,15 @@ apk add wl-kbptr ``` ### Fedora -As of now there is no official package through dnf. So you will need to install the dependencies and then run the steps described in the **From sources** section. +If you are using Fedora, you can install the `wl-kbptr` package from the [onesaladleaf/wl-kbptr](https://copr.fedorainfracloud.org/coprs/onesaladleaf/wl-kbptr) copr repository. ```bash -sudo dnf install -y \ - meson \ - wayland-protocols-devel \ - gcc \ - libwayland-client \ - cmake \ - wayland-devel \ - libxkbcommon-devel \ - cairo-devel +sudo dnf copr enable onesaladleaf/wl-kbptr +sudo dnf install wl-kbptr + +# for Fedora Silverblue: +sudo dnf copr enable onesaladleaf/wl-kbptr +rpm-ostree install wl-kbptr ``` ### From sources