From b24be723aef447abe80878a8d0e3de600907320a Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Germ=C3=A1n=20A=2E=20Racca?= Date: Mon, 7 Feb 2011 09:17:41 -0200 Subject: [PATCH] Initial import (#671024) --- .gitignore | 1 + sources | 1 + wallpaperd.spec | 54 +++++++++++++++++++++++++++++++++++++++++++++++++ 3 files changed, 56 insertions(+) create mode 100644 wallpaperd.spec diff --git a/.gitignore b/.gitignore index e69de29..314d56f 100644 --- a/.gitignore +++ b/.gitignore @@ -0,0 +1 @@ +/wallpaperd-0.2.0.tar.gz diff --git a/sources b/sources index e69de29..399e0cc 100644 --- a/sources +++ b/sources @@ -0,0 +1 @@ +2ba455f3598c6111686791ca74bcd6ee wallpaperd-0.2.0.tar.gz diff --git a/wallpaperd.spec b/wallpaperd.spec new file mode 100644 index 0000000..3725ce6 --- /dev/null +++ b/wallpaperd.spec @@ -0,0 +1,54 @@ +Name: wallpaperd +Version: 0.2.0 +Release: 2%{?dist} +Summary: Background setter supporting random images and per-workspace images + +Group: User Interface/Desktops +License: MIT +URL: http://pekdon.net/wallpaperd +Source0: http://projects.pekdon.net/projects/%{name}/files/%{name}-%{version}.tar.gz +BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) + +BuildRequires: imlib2-devel libXrandr-devel + +%description +Wallpaperd is a small application that takes care of setting the background +image. Wallpaperd was created due to a friend requesting to have different +wallpapers on the different workspaces in Pekwm. + +Wallpaperd now supports: +* Changing wallpaper on workspace change. +* Changing wallpaper every X amount of time. +* Changing wallpaper based on a GNOME background.xml file. +* Support for specifying centered, zoomed, tiled and fill image modes. +* Selecting wallpaper based on workspace number. +* Selecting wallpaper based on workspace name. +* RANDR support setting the wallpaper on each screen. +* RANDR support re-setting the wallpaper on screen resolution changes. +* Setting background Atom hint. + +%prep +%setup -q + +%build +%configure +make %{?_smp_mflags} + +%install +rm -rf %{buildroot} +make install DESTDIR=%{buildroot} INSTALL="install -p" + +%clean +rm -rf %{buildroot} + +%files +%defattr(-,root,root,-) +%doc ChangeLog LICENSE README wallpaperd.cfg +%{_bindir}/%{name} + +%changelog +* Thu Jan 27 2011 Germán A. Racca 0.2.0-2 +- Enabled RANDR support + +* Wed Jan 19 2011 Germán A. Racca 0.2.0-1 +- Initial release of RPM package