hyprpaper/README.md

40 lines
1.1 KiB
Markdown
Raw Permalink Normal View History

2022-07-01 20:16:45 +02:00
# hyprpaper
2022-07-01 23:13:43 +02:00
2025-12-03 15:00:56 +00:00
Hyprpaper is a simple and fast wallpaper utility for Hyprland with the ability to dynamically change wallpapers through sockets.
2022-07-01 23:13:43 +02:00
2023-01-29 14:00:08 +00:00
# Features
- Per-output wallpapers
2025-12-03 15:00:56 +00:00
- fill, tile, cover or contain modes
2023-01-29 14:00:08 +00:00
- fractional scaling support
2025-12-03 15:00:56 +00:00
- IPC for fast wallpaper switches
2023-01-29 14:00:08 +00:00
2022-07-01 23:13:43 +02:00
# Installation
[Arch Linux](https://archlinux.org/packages/extra/x86_64/hyprpaper/): `pacman -S hyprpaper`
2022-07-11 23:14:18 -07:00
[OpenSuse Linux](https://software.opensuse.org/package/hyprpaper): `zypper install hyprpaper`
## Manual:
### Dependencies
The development files of these packages need to be installed on the system for `hyprpaper` to build correctly.
(Development packages are usually suffixed with `-dev` or `-devel` in most distros' repos).
2025-12-03 15:00:56 +00:00
- hyprtoolkit
- hyprlang
- hyprutils
2025-12-03 15:00:56 +00:00
- hyprwire
2023-06-05 17:42:24 +10:00
### Building
Building is done via CMake:
```sh
cmake --no-warn-unused-cli -DCMAKE_BUILD_TYPE:STRING=Release -DCMAKE_INSTALL_PREFIX:PATH=/usr -S . -B ./build
cmake --build ./build --config Release --target hyprpaper -j`nproc 2>/dev/null || getconf _NPROCESSORS_CONF`
```
Install with:
```sh
cmake --install ./build
2025-12-03 15:00:56 +00:00
```