Uh oh!
There was an error while loading.Please reload this page.
- Notifications
You must be signed in to change notification settings - Fork71
Hyprpaper is a blazing fast wayland wallpaper utility with IPC controls.
License
hyprwm/hyprpaper
Folders and files
Name | Name | Last commit message | Last commit date | |
---|---|---|---|---|
Repository files navigation
Hyprpaper is a blazing fast wallpaper utility for Hyprland with the ability to dynamically change wallpapers through sockets. It will work on all wlroots-based compositors, though.
- Per-output wallpapers
- fill, tile or contain modes
- fractional scaling support
- IPC for blazing fast wallpaper switches
- preloading targets into memory
Arch Linux:pacman -S hyprpaper
OpenSuse Linux:zypper install hyprpaper
The development files of these packages need to be installed on the system forhyprpaper
to build correctly.(Development packages are usually suffixed with-dev
or-devel
in most distros' repos).
- wayland
- wayland-protocols
- pango
- cairo
- file
- libglvnd
- libglvnd-core
- libjpeg-turbo
- libwebp
- libjxl
- hyprlang
- hyprutils
- hyprwayland-scanner
- hyprgraphics
To install all of these in Fedora, run this command:
sudo dnf install wayland-devel wayland-protocols-devel hyprlang-devel pango-devel cairo-devel file-devel libglvnd-devel libglvnd-core-devel libjpeg-turbo-devel libwebp-devel libjxl-devel gcc-c++ hyprutils-devel hyprwayland-scanner
On Arch:
sudo pacman -S ninja gcc wayland-protocols libjpeg-turbo libwebp libjxl pango cairo pkgconf cmake libglvnd wayland hyprutils hyprwayland-scanner hyprlang
On OpenSUSE:
sudo zypper install ninja gcc-c++ wayland-protocols-devel Mesa-libGLESv3-devel file-devel hyprutils-devel hyprwayland-scanner
Building is done via CMake:
cmake --no-warn-unused-cli -DCMAKE_BUILD_TYPE:STRING=Release -DCMAKE_INSTALL_PREFIX:PATH=/usr -S. -B ./buildcmake --build ./build --config Release --target hyprpaper -j`nproc2>/dev/null|| getconf _NPROCESSORS_CONF`
Install with:
cmake --install ./build
Hyprpaper is controlled by the config, like this:
~/.config/hypr/hyprpaper.conf
preload = /path/to/image.png#if more than one preload is desired then continue to preload other backgroundspreload = /path/to/next_image.png# .. more preloads#set the default wallpaper(s) seen on initial workspace(s) --depending on the number of monitors usedwallpaper = monitor1,/path/to/image.png#if more than one monitor in use, can load a 2nd imagewallpaper = monitor2,/path/to/next_image.png# .. more monitors#enable splash text rendering over the wallpapersplash = true#fully disable ipc# ipc = off
Preload will tell Hyprland to load a particular image (supported formats: png, jpg, jpeg, jpeg xl, webp). Wallpaper will apply the wallpaper to the selected output (monitor
is the monitor's name, easily can be retrieved withhyprctl monitors
. You can leave it empty to set all monitors without an active wallpaper. You can also usedesc:
followed by the monitor's description without the (PORT) at the end)
You may addcontain:
ortile:
before the file path inwallpaper=
to set the mode to either contain or tile, respectively, instead of cover:
wallpaper = monitor,contain:/path/to/image.jpg
A Wallpapercannot be applied without preloading. The config isnot reloaded dynamically.
Preload does exactly what it says. It loads the entire wallpaper into memory. This can result in around 8 - 20MB of mem usage. It is not recommended to preload every wallpaper you have, as it will be a) taking a couple seconds at the beginning to load and b) take 100s of MBs of disk and RAM usage.
Preload is meant only for situations in which you want a wallpaper to switch INSTANTLY when you issue a wallpaper keyword (e.g. wallpaper per workspace)
In any and all cases when you don't mind waiting 300ms for the wallpaper to change, consider making a script that:
- preloads the new wallpaper
- sets the new wallpaper
- unloads the old wallpaper (to free memory)
You can usehyprctl hyprpaper
(if on Hyprland) to issue a keyword, for example
Example:
If your wallpapers are stored in~/Pictures, then make sure you have already preloaded the desired wallpapers in hyprpaper.conf.
~/.config/hypr/hyprpaper.conf
preload = ~/Pictures/myepicpng.pngpreload = ~/Pictures/myepicpngToo.pngpreload = ~/Pictures/myepicpngAlso.png#... continue as desired, but be mindful of the impact on memory.
In the actual configuration for Hyprland,hyprland.conf, variables can be set for ease of reading and to be used as shortcuts in the bind command. The following example uses $w shorthand wallpaper variables:
~/.config/hypr/hyprland.conf
$w1 = hyprctl hyprpaper wallpaper "DP-1,~/Pictures/myepicpng.png"$w2 = hyprctl hyprpaper wallpaper "DP-1,~/Pictures/myepicpngToo.png"$w3 = hyprctl hyprpaper wallpaper "DP-1,~/Pictures/myepicpngAlso.png"#yes use quotes around desired monitor and wallpaper#... continued with desired amount
With the variables created we can now "exec" the actions.
Remember in Hyprland we can bind more than one action to a key so in the case where we'd like to change the wallpaper when we switch workspace we have to ensure that the actions are bound to the same key such as...
~/.config/hypr/hyprland.conf
bind=SUPER,1,workspace,1 #Superkey + 1 switches to workspace 1bind=SUPER,1,exec,$w1 #SuperKey + 1 switches to wallpaper $w1 on DP-1 as defined in the variablebind=SUPER,2,workspace,2 #Superkey + 2 switches to workspace 2bind=SUPER,2,exec,$w2 #SuperKey + 2 switches to wallpaper $w2 on DP-1 as defined in the variablebind=SUPER,3,workspace,3 #Superkey + 3 switches to workspace 3bind=SUPER,3,exec,$w3 #SuperKey + 3 switches to wallpaper $w3 on DP-1 as defined in the variable#... and so on
Because the default behavior in Hyprland is to also switch the workspace whenever movetoworkspace is used to move a window to another workspace you may want to include the following:
bind=SUPERSHIFT,1,movetoworkspace,1 #Superkey + Shift + 1 moves windows and switches to workspace 1bind=SUPERSHIFT,1,exec,$w1 #SuperKey + Shift + 1 switches to wallpaper $w1 on DP-1 as defined in the variable
You can also usehyprctl hyprpaper
to get information about the state of hyprpaper using the following commands:
listloaded - lists the wallpapers that are currently preloaded (useful for dynamically preloading and unloading)listactive - prints the active wallpapers hyprpaper is displaying, along with its accociated monitor
Since the IPC has to tick every now and then, and poll in the background, battery life might be a tiny bit worse with IPC on. If you want to fully disable it, use
ipc = off
in the config.
You can setsplash = true
to enable the splash rendering over the wallpaper.
The value forsplash_offset
sets, in percentage, the splash rendering offset relative to the bottom of the display.
If you use a lot of wallpapers, consider unloading those that you no longer need. This will mean you need to load them again if you wish to use them for a second time, but will free the memory used by the preloaded bitmap. (Usually 8 - 20MB, depending on the resolution)
You can issue ahyprctl hyprpaper unload [PATH]
to do that.
You can also issue ahyprctl hyprpaper unload all
to unload all inactive wallpapers.
For other compositors, the socket works like socket1 of Hyprland, and is located in/tmp/hypr/.hyprpaper.sock
(this path only when Hyprland is not running!)
About
Hyprpaper is a blazing fast wayland wallpaper utility with IPC controls.
Topics
Resources
License
Uh oh!
There was an error while loading.Please reload this page.
Stars
Watchers
Forks
Packages0
Uh oh!
There was an error while loading.Please reload this page.