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.
There's a KDE plugin for Wallpaper Engine
https://store.kde.org/p/1475528
Github: https://github.com/catsout/wallpaper-engine-kde-plugin
Plasma supports animated wallpapers out of the box. No need for third party plugins that rely on proprietary software like Wallpaper Engine.
I'm looking for something more universal, that works in any DE or WM and that doesn't necessarily have to depend on kde plasma
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?
Are there any programs that can animate a cat to chase my mouse across the desktop?
oneko
I tried oneko for a day and wow.. not my thing. Constant distraction and I didn't get much done that day, lol. Not recommended for the work computer at least.
I agree with everything you say but it's there for those who are interested.
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
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).
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!