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
|
|
|
|
|
|
2024-03-11 01:42:01 +00:00
|
|
|
[Arch Linux](https://archlinux.org/packages/extra/x86_64/hyprpaper/): `pacman -S hyprpaper`
|
2022-07-11 23:14:18 -07:00
|
|
|
|
2024-03-27 17:13:56 +01:00
|
|
|
[OpenSuse Linux](https://software.opensuse.org/package/hyprpaper): `zypper install hyprpaper`
|
|
|
|
|
|
2023-11-27 16:36:59 +05:30
|
|
|
## 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
|
2023-12-31 01:37:50 +01:00
|
|
|
- hyprlang
|
2024-07-17 16:25:07 +02:00
|
|
|
- hyprutils
|
2025-12-03 15:00:56 +00:00
|
|
|
- hyprwire
|
2023-06-05 17:42:24 +10:00
|
|
|
|
2023-11-27 16:36:59 +05:30
|
|
|
### Building
|
|
|
|
|
|
2024-03-12 22:24:09 +02:00
|
|
|
Building is done via CMake:
|
|
|
|
|
|
|
|
|
|
```sh
|
|
|
|
|
cmake --no-warn-unused-cli -DCMAKE_BUILD_TYPE:STRING=Release -DCMAKE_INSTALL_PREFIX:PATH=/usr -S . -B ./build
|
2024-05-14 16:13:41 +01:00
|
|
|
cmake --build ./build --config Release --target hyprpaper -j`nproc 2>/dev/null || getconf _NPROCESSORS_CONF`
|
2023-11-27 16:36:59 +05:30
|
|
|
```
|
|
|
|
|
|
2024-03-12 22:24:09 +02:00
|
|
|
Install with:
|
|
|
|
|
|
|
|
|
|
```sh
|
|
|
|
|
cmake --install ./build
|
2025-12-03 15:00:56 +00:00
|
|
|
```
|