blob: e0bb32156416291c847d5a4ae6add94133b7f2f5 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
|
# Wbg
Super simple wallpaper application for Wayland compositors
implementing the layer-shell protocol.
Wbg takes a single command line argument: a path to an image
file. This image is displayed scaled-to-fit on all monitors.
More display options, and/or the ability to set a per-monitor
wallpaper _may_ be added in the future.
[](https://repology.org/project/wbg/versions)
## Requirements
### Runtime
* pixman
* wayland (_client_ and _cursor_ libraries)
* libpng (optional)
* libjpeg (optional)
* libwebp (optional)
Note that if SVG support is disabled at least one of _libpng_, _libjpeg_ and
_libwebp_ is required.
### Compile time
* Development packages for all the libraries listed under _runtime_.
* wayland-protocols
* [tllist](https://codeberg.org/dnkl/tllist)
## Building
```sh
meson --buildtype=release build
ninja -C build
sudo ninja -C build install
```
By default, PNG, JPEG and WebP support is auto-detected. You can force
disable/enable them with the meson command line options
`-Dpng=disabled|enabled`, `-Djpeg=disabled|enabled` and
`-Dwebp=disabled|enabled`.
SVG support is enabled by default (as it does not require additional
dependencies). You can disable it with the meson command line option
`-Dsvg=false`
## Derivative work
* https://codeberg.org/droc12345/wbg - adds support for directories
with images, random, timer flags.
## License
Wbg is released under the [MIT license](LICENSE).
Wbg (optionally) uses nanosvg, released under the [Zlib
license](3rd-party/nanosvg/LICENSE.txt).
|