Advertisement
Guest User

Untitled

a guest
Jul 30th, 2016
74
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.71 KB | None | 0 0
  1. cat /usr/share/backgrounds/gnome/adwaita-timed.xml
  2. <background>
  3. <starttime>
  4. <year>2011</year>
  5. <month>11</month>
  6. <day>24</day>
  7. <hour>7</hour>
  8. <minute>00</minute>
  9. <second>00</second>
  10. </starttime>
  11.  
  12. <!-- This animation will start at 7 AM. -->
  13.  
  14. <!-- We start with sunrise at 7 AM. It will remain up for 1 hour. -->
  15. <static>
  16. <duration>3600.0</duration>
  17. <file>/usr/share/backgrounds/gnome/adwaita-morning.jpg</file>
  18. </static>
  19.  
  20. <!-- Sunrise starts to transition to day at 8 AM. The transition lasts for 5 hours, ending at 1 PM. -->
  21. <transition type="overlay">
  22. <duration>18000.0</duration>
  23. <from>/usr/share/backgrounds/gnome/adwaita-morning.jpg</from>
  24. <to>/usr/share/backgrounds/gnome/adwaita-day.jpg</to>
  25. </transition>
  26.  
  27. <!-- It's 1 PM, we're showing the day image in full force now, for 5 hours ending at 6 PM. -->
  28. <static>
  29. <duration>18000.0</duration>
  30. <file>/usr/share/backgrounds/gnome/adwaita-day.jpg</file>
  31. </static>
  32.  
  33. <!-- It's 7 PM and it's going to start to get darker. This will transition for 6 hours up until midnight. -->
  34. <transition type="overlay">
  35. <duration>21600.0</duration>
  36. <from>/usr/share/backgrounds/gnome/adwaita-day.jpg</from>
  37. <to>/usr/share/backgrounds/gnome/adwaita-night.jpg</to>
  38. </transition>
  39.  
  40. <!-- It's midnight. It'll stay dark for 5 hours up until 5 AM. -->
  41. <static>
  42. <duration>18000.0</duration>
  43. <file>/usr/share/backgrounds/gnome/adwaita-night.jpg</file>
  44. </static>
  45.  
  46. <!-- It's 5 AM. We'll start transitioning to sunrise for 2 hours up until 7 AM. -->
  47. <transition type="overlay">
  48. <duration>7200.0</duration>
  49. <from>/usr/share/backgrounds/gnome/adwaita-night.jpg</from>
  50. <to>/usr/share/backgrounds/gnome/adwaita-morning.jpg</to>
  51. </transition>
  52. </background>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement