From 9c36f98ce5b11836f910dcedaa75d2b1c9a74315 Mon Sep 17 00:00:00 2001 From: Carlos Desco <36003578+Desco5@users.noreply.github.com> Date: Wed, 1 May 2024 21:25:54 +0200 Subject: [PATCH] Hyprpaper: add more usage examples (#619) --- pages/Hypr Ecosystem/hyprpaper.md | 18 ++++++++++++++++-- 1 file changed, 16 insertions(+), 2 deletions(-) diff --git a/pages/Hypr Ecosystem/hyprpaper.md b/pages/Hypr Ecosystem/hyprpaper.md index 3ab4b43..66db0f5 100644 --- a/pages/Hypr Ecosystem/hyprpaper.md +++ b/pages/Hypr Ecosystem/hyprpaper.md @@ -15,10 +15,24 @@ the `wallpaper` keyword is used to apply the preloaded image to your monitor(s): ```ini preload = /home/me/amongus.png -wallpaper = DP-1,/home/me/amongus.png +wallpaper = monitor,/home/me/amongus.png ``` -For wallpaper keywords: +`monitor` can be left empty to set to all monitors without a set wallpaper: + +``` +wallpaper = ,/home/me/amongus.png +``` + +Monitor names can be checked with `hyprctl monitors` + +Also can be used with `desc:` followed by the monitor's description without the (PORT) at the end + +You may add `contain:` before the file path in `wallpaper=` to set the mode to contain instead of cover: + +``` +wallpaper = monitor,contain:/home/me/amongus.png +``` You can use `unload` to unload preloaded images. You can also specify `unload all` to unload all images or `unload unused` to unload images that aren't being used.