this post was submitted on 24 Dec 2023
97 points (99.0% liked)

Linux

45551 readers
1802 users here now

From Wikipedia, the free encyclopedia

Linux is a family of open source Unix-like operating systems based on the Linux kernel, an operating system kernel first released on September 17, 1991 by Linus Torvalds. Linux is typically packaged in a Linux distribution (or distro for short).

Distributions include the Linux kernel and supporting system software and libraries, many of which are provided by the GNU Project. Many Linux distributions use the word "Linux" in their name, but the Free Software Foundation uses the name GNU/Linux to emphasize the importance of GNU software, causing some controversy.

Rules

Related Communities

Community icon by Alpár-Etele Méder, licensed under CC BY 3.0

founded 5 years ago
MODERATORS
 

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.

top 19 comments
sorted by: hot top controversial new old
[–] gaylord_fartmaster 35 points 6 months ago (1 children)

I use this Wallpaper Engine KDE plugin.

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

[–] [email protected] 1 points 6 months ago

That's genius, thanks for the recommendation!

[–] [email protected] 14 points 6 months 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?

[–] [email protected] 17 points 6 months ago (2 children)

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

oneko

[–] [email protected] 4 points 6 months ago (1 children)

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.

[–] [email protected] 1 points 6 months ago

I agree with everything you say but it's there for those who are interested.

[–] [email protected] 3 points 6 months ago

Bonzi Buddy

[–] [email protected] 13 points 6 months ago
[–] [email protected] 7 points 6 months ago
[–] Waffelson 4 points 6 months ago

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

[–] Quackdoc 2 points 6 months ago

I use mpvpaper on sway and cosmic

[–] [email protected] 2 points 6 months ago (1 children)

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

[–] [email protected] 2 points 6 months ago

Apparently it can be done with mplayer, I haven't tried it yet, but later I'll see if it works, and if so, I'll stick with that option

[–] [email protected] 1 points 6 months ago (1 children)

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

[–] [email protected] 1 points 6 months ago

I use feh for wallpapers (Obviously not animated), but I made this post anyway to see what kind of programs there are

[–] [email protected] 1 points 6 months ago (1 children)

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).

[–] [email protected] 1 points 6 months ago (1 children)

Ok, give me the script, please

[–] [email protected] 2 points 6 months 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!