Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[Feature request] Support for Dynamic Wallpappers supported by other DEs like Gnome/Cinnamon/Mate #70

Open
snaggen opened this issue Nov 4, 2024 · 0 comments

Comments

@snaggen
Copy link

snaggen commented Nov 4, 2024

It would be nice to have support for the same dynamic wallpapers as Gnome/Cinamon/Mate since Fedora provides a few out of the box, and there are collections to be found (Just googled and found https://github.com/saint-13/Linux_Dynamic_Wallpapers/ for example). And there are tools available to create them https://github.com/maoschanz/dynamic-wallpaper-editor

I haven't been able to find any official spec, but the xml format seems to be quite straight forward.

An example of the default Fedora 41 Wallpaper

<background>
  <starttime>
    <year>2024</year>
    <month>10</month>
    <day>22</day>
    <hour>8</hour>
    <minute>00</minute>
    <second>00</second>
  </starttime>
<!-- This animation will start at 8 AM. -->

<!-- We start with day at 8 AM. It will remain up for 10 hours. -->
<static>
<duration>36000.0</duration>
<file>/usr/share/backgrounds/f41/default/f41-01-day.png</file>
</static>

<!-- Day ended and starts to transition to night at 6 PM. The transition lasts for 2 hours, ending at 8 PM. -->
<transition type="overlay">
<duration>7200.0</duration>
<from>/usr/share/backgrounds/f41/default/f41-01-day.png</from>
<to>/usr/share/backgrounds/f41/default/f41-01-night.png</to>
</transition>

<!-- It's 8 PM, we're showing the night till 6 AM. -->
<static>
<duration>36000.0</duration>
<file>/usr/share/backgrounds/f41/default/f41-01-night.png</file>
</static>

<!-- It's 6 AM, and we're starting to transition to day. Transition completes at 8 AM. -->
<transition type="overlay">
<duration>7200.0</duration>
<from>/usr/share/backgrounds/f41/default/f41-01-night.png</from>
<to>/usr/share/backgrounds/f41/default/f41-01-day.png</to>
</transition>

</background>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant