No commit activity in last 3 years
No release in over 3 years
A gem for creating and interacting with the XML files that define wallpaper slideshows in GNOME
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
 Dependencies

Runtime

>= 1.5.6
 Project Readme

gnome-wallpaper-slideshow

gnome-wallpaper-slideshow is a Ruby gem that allows you to create and interact with the XML files that define wallpaper slideshows in GNOME. It supports both creating slideshows from scratch and loading existing slideshows.

Example Usage

slideshow = GnomeWallpaperSlideshow.new do
  create_new_slideshow "slideshow.xml"
  start_time Time.local 2013, 1, 13, 0, 0, 0 # Start the slideshow at midnight
  add_wallpaper "test.jpg", 3600, 5 # Display this image for 1 hour with a 5 sec transition
  add_wallpaper "other.jpg" 1800, 5 # Display this image for 30 minutes with a 5 sec transition
end
slideshow.save_xml

Installation

gem install gnome-wallpaper-slideshow

Sample Program

gnome-wallpaper-slideshow is distributed with a sample application called create-slideshow. This script takes the name of a directory containing image files, the amount of time to display each image, the transition time, and an output filename and produces a slideshow XML file.

License

gnome-wallpaper-slideshow is MIT licensed. See LICENSE.txt for details.