this post was submitted on 25 Oct 2023
25 points (100.0% liked)

Linux

46819 readers
1417 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
 

ofc you may schedule it with cron but following script I wrote won't change anything. The setting is set but nothing changes. I'm on Fedora Silverblue

edit:

solution

wallpath=/usr/local/share/backgrounds/Dynamic_Wallpapers
image=$(find $wallpath -name "*.xml" | grep -E xml | sort -R | tail -1)
image="file:///$image"
echo $image

gsettings set org.gnome.desktop.background picture-uri "$image"
gsettings set org.gnome.desktop.background picture-uri-dark "$image"

and crontab

@daily ~/wallpaper_changer.sh
@reboot ~/wallpaper_changer.sh
you are viewing a single comment's thread
view the rest of the comments
[–] [email protected] 9 points 10 months ago* (last edited 10 months ago) (1 children)

I'm not sure about using xml files, but there's also a 'picture-uri-dark' key you need to set instead if you're using dark mode. I have a similar setup with a systemd user timer that runs every 5 minutes.

Edit: I just tried it out in the terminal and it works ok for xml files, too. Also, I try to avoid parsing the output of ls in scripts. You can use find instead, something like

find $wallpath -name '*.xml'

should work.

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

Nice! It worked. Thank you so much!