I am looking for programs to put animated wallpapers on Linux, the ones I know for now are: Xwinwrap, paperview and komorebi. If you know of another program that can do this, leave it in the comments so that others can read it and give their opinion about the program.

all 25 comments

sorted by: hot top controversial new old
[–] 33 points 2 years ago (1 child)

I use this Wallpaper Engine KDE plugin.

You can download wallpapers from the Wallpaper Engine Steam workshop and load them using the plugin instead.

  • source
  • hideshow 2 child comments
  • [–] 15 points 2 years ago (2 children)

    Are there any programs that can animate a cat to chase my mouse across the desktop? Or a guy who runs up window borders and tries to wrangle the mouse?

  • source
  • hideshow 4 child comments
  • [–] 19 points 2 years ago (2 children)

    Are there any programs that can animate a cat to chase my mouse across the desktop?

    oneko

  • source
  • parent
  • hideshow 4 child comments
  • [–] 14 points 2 years ago
    [–] 10 points 2 years ago* (2 children)
  • [–] 8 points 2 years ago
    [–] 4 points 2 years ago

    mpvpaper if you use wayland compositors It doesn't work on nvidia hyprland, but nice work on intel igpu

  • source
  • [–] 2 points 2 years ago

    I use mpvpaper on sway and cosmic

  • source
  • [–] 2 points 2 years ago

    I'm surprised nobody has recommended Smart Video Wallpaper Reborn for KDE, but then again, it is an old thread. This is my favorite, it also allows for animated wallaper on the lockscreen.

  • source
  • [–] 2 points 2 years ago (1 child)

    Pretty sure I did with mplayer and/or feh but it was years ago

  • source
  • hideshow 2 child comments
  • [–] 1 point 2 years ago

    After seeing this thread, and the Linux wallpaper engine repo, I think I'm gonna boot into Windows and record wallpapers I like as videos, then set them as backgrounds in linux. I'm gonna be on x11 until cinnamon updates to waylan

  • source
  • [–] 1 point 2 years ago (1 child)

    I set mpv as the root window which worked well. I stopped using it a while back, but if you are interested, I could dig up the simple script for you (literally one or two lines iirc).

  • source
  • hideshow 2 child comments
  • [–] [S] 1 point 2 years ago (1 child)

    Ok, give me the script, please

  • source
  • parent
  • hideshow 2 child comments
  • [–] 2 points 2 years ago

    Sure. If you are using an nvidia optimus laptop, you should also add __NV_PRIME_RENDER_OFFLOAD=1 __GLX_VENDOR_LIBRARY_NAME=nvidia at the start of the last line when running in hybrid mode to run mpv on the dgpu. You should have a file at ~/.wallpaperrc that contains wallpaper_playlist: /path/to/mpv/playlist. You may want to add this script to your startup sequence via your wm/de.

    #!/bin/sh
    
    WALLPAPER_PLAYLIST=$(cat ~/.wallpaperrc | grep -v '^\w*#' | grep 'wallpaper_playlist' | sed "s/wallpaper_playlist: //")
    
    
    xwinwrap -g 1920x1080 -ov -- mpv -wid WID --no-osc --no-audio --loop-playlist --shuffle --playlist=$WALLPAPER_PLAYLIST
    

    Hope this helps!

  • source
  • parent
  • [–] 1 point 2 years ago (1 child)

    swww (wayland only)

    never tried it (i don't use animated wallpapers) but it seems pretty good, not sure if it works on non-wlroots like KDE or GNOME

  • source
  • hideshow 2 child comments