Live Wallpaper

Project:

In my case I had to fix some python files:
src/utils.py
# LightDM and XFCE4 does not support this
# else:
# system_bus = pydbus.SystemBus()
# proxy = system_bus.get(".login1")
# proxy.PrepareForShutdown.connect(self.__end_session_handler)

src/player/web_player.py
gi.require_version("WebKit2", "4.0") << it was 4.1

Then
meson compile -C build
meson install -C build

Get some live wallpaper

You may want to convert to lower resolution, consumes less CPU
ffmpeg -i mylivewallpapers-com-Dreamy-Beach-FHD.mp4 -vf scale=1280:720 beach.mp4

and there you go!
 
Back
Top