Hyprpaper: add more usage examples (#619)

This commit is contained in:
Carlos Desco 2024-05-01 21:25:54 +02:00 committed by GitHub
parent 88d1d8b0ca
commit 9c36f98ce5
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 16 additions and 2 deletions

View File

@ -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.