Crates.io | wpaperd |
lib.rs | wpaperd |
version | 1.0.1 |
source | src |
created_at | 2024-04-17 08:27:02.931206 |
updated_at | 2024-04-18 08:09:43.803794 |
description | Wallpaper daemon for Wayland |
homepage | https://github.com/danyspin97/wpaperd |
repository | https://github.com/danyspin97/wpaperd |
max_upload_size | |
id | 1211226 |
size | 176,621 |
wpaperd is the modern wallpaper daemon for Wayland. It dynamically changes the current wallpaper, either after a certain amount of time or via a command-line interface. It uses OpenGL ES to render the images and have beautiful hardware-accelerated transitions, while being easy on resources.
Notice: wpaperd uses wlr_layer_shell wayland protocol, which is available on all wlroots based compositors (sway, hyprland, ...) and on KDE. Therefore it won't work on GNOME.
wpaperd is written in Rust and requires a working Cargo installation. It also depends on:
mesa
wayland-client
wayland-egl
rinstall
(optional for installing wpaperd
)To install wpaperd
, clone the repository and build the project:
$ git clone https://github.com/danyspin97/wpaperd
$ cd wpaperd
$ cargo build --release
Generate the man pages by running scdoc
:
$ scdoc < man/wpaperd-output.5.scd > man/wpaperd-output.5
You can install both the daemon (wpaperd
) and cli (wpaperctl
) using rinstall:
$ rinstall --yes
To run wpaperd, run the daemon:
$ wpaperd
If you want to automatically run it at startup, add this line to your sway configuration
(located in $HOME/.config/sway/config
):
# Assuming it has been installed in ~/.local/bin/wpaperd
exec ~/.local/bin/wpaperd -d
Or in Hyprland:
exec-once=~/.local/bin/wpaperd -d
loading and dislaying images. Have a look on its documentation for the supported formats.
When path
is set to a directory, you can cycle the images by running the commands next
and
previous
using wpaperctl:
$ wpaperctl next
$ wpaperctl previous
When sorting
is set to asceding
and desceding
, wpaperd will use the wallpaper name to
calculate the next wallpaper accordingly. When sorting
is set to random
, it will store
all the wallpapers shown in a queue, so that the commands next
and previous
can work
as intended.
The configuration file for wpaperd is located in XDG_CONFIG_HOME/wpaperd/config.toml
(which defaults to ~/.config/wpaperd/config.toml
). Each section
represents a different display and can contain the following keys:
path
, path to the image to use as wallpaper or to a directory to pick the wallpaper fromduration
, how much time the image should be displayed until it is changed with a new one.
It supports a human format for declaring the duration (e.g. 30s
or 10m
), described
here.
This is only valid when path points to a directory. (Optional)sorting
, choose the sorting order. Valid options are ascending
, descending
, and random
,
with the default being random
. This is only valid when path points to a directory. (Optional)mode
, choose how to display the wallpaper when the size is different than the display
resolution:
fit
shows the entire image with black corners covering the empty space leftcenter
centers the image on the screen, leaving out the corners of the image that couldn't fitstretch
shows the entire image stretching it to fit the entire screen without leaving any
black corner, changing the aspect ratiotile
shows the image multiple times horizontally and vertically to fill the screentransition_time
, how many milliseconds should the transition run. (Optional, 300
by default).queue_size
, decide how big the queue should be when path
is set a directory and sorting
is
set to random
. (Optional, 10
by default)The section default
will be used as base for the all the display configuration; the section
any
will be used for all the displays that are not explictly listed. This allows to have a
flexible configuration without repeating any settings. wpaperd will check the configuration at
startup and each time it changes and provide help when it is incorrect.
This is the simplest configuration:
[DP-3]
path = "/home/danyspin97/github_octupus.png"
[DP-4]
path = "/home/danyspin97/Wallpapers"
duration = "30m"
This is a more complex configuration:
[default]
duration = "30m"
mode = "center"
sorting = "ascending"
[any]
path = "/home/danyspin97/default_wallpaper.png"
[DP-3]
path = "/home/danyspin97/Wallpapers"
If you're running sway, you can look for the available outputs and their ID by running:
$ swaymsg -t get_outputs
On Hyprland you can run:
$ hyprctl monitors
image
crate to load and decode the image. However, when built in debug
mode
the loading and decoding time takes from half a second to a couple, even on modern hardware.
Try building wpaperd in release mode:$ cargo build --release
wpaperd is licensed under the GPL-3.0+ license.