mirror of
https://github.com/hyprwm/hyprland-wiki.git
synced 2024-11-02 03:45:57 +01:00
Hyprpaper: add more usage examples (#619)
This commit is contained in:
parent
88d1d8b0ca
commit
9c36f98ce5
1 changed files with 16 additions and 2 deletions
|
@ -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.
|
||||
|
|
Loading…
Reference in a new issue