From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([2001:470:142:3::10]:54672) by lists.gnu.org with esmtp (Exim 4.90_1) (envelope-from ) id 1jIkHg-0003C1-D8 for guix-patches@gnu.org; Sun, 29 Mar 2020 22:36:17 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1jIkHf-0003LG-7P for guix-patches@gnu.org; Sun, 29 Mar 2020 22:36:16 -0400 Received: from debbugs.gnu.org ([209.51.188.43]:48609) by eggs.gnu.org with esmtps (TLS1.0:RSA_AES_128_CBC_SHA1:16) (Exim 4.71) (envelope-from ) id 1jIkHf-0003L3-31 for guix-patches@gnu.org; Sun, 29 Mar 2020 22:36:15 -0400 Received: from Debian-debbugs by debbugs.gnu.org with local (Exim 4.84_2) (envelope-from ) id 1jIkHf-0004e3-19 for guix-patches@gnu.org; Sun, 29 Mar 2020 22:36:15 -0400 Subject: [bug#40306] [PATCH] gnu: Add xwallpaper Resent-Message-ID: Received: from eggs.gnu.org ([2001:470:142:3::10]:54598) by lists.gnu.org with esmtp (Exim 4.90_1) (envelope-from ) id 1jIMra-0000sC-Tz for guix-patches@gnu.org; Sat, 28 Mar 2020 21:35:48 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1jIMrY-0001IE-BC for guix-patches@gnu.org; Sat, 28 Mar 2020 21:35:45 -0400 Received: from mail-pl1-x629.google.com ([2607:f8b0:4864:20::629]:40008) by eggs.gnu.org with esmtps (TLS1.0:RSA_AES_128_CBC_SHA1:16) (Exim 4.71) (envelope-from ) id 1jIMrX-0001Dr-Ut for guix-patches@gnu.org; Sat, 28 Mar 2020 21:35:44 -0400 Received: by mail-pl1-x629.google.com with SMTP id h11so5164581plk.7 for ; Sat, 28 Mar 2020 18:35:43 -0700 (PDT) Received: from ecenter ([2600:1700:83b0:8bd0::6c3]) by smtp.gmail.com with ESMTPSA id ne16sm6761092pjb.11.2020.03.28.18.35.40 for (version=TLS1_2 cipher=ECDHE-RSA-CHACHA20-POLY1305 bits=256/256); Sat, 28 Mar 2020 18:35:41 -0700 (PDT) From: John Soo Date: Sat, 28 Mar 2020 18:35:40 -0700 Message-ID: <87y2rk0wpf.fsf@asu.edu> MIME-Version: 1.0 Content-Type: multipart/mixed; boundary="=-=-=" List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: guix-patches-bounces+kyle=kyleam.com@gnu.org Sender: "Guix-patches" To: 40306@debbugs.gnu.org --=-=-= Content-Type: text/plain Hi Guix, xwallpaper is a small wallpapering program. It is like feh and quite handy if you use a window manager. Thanks, John --=-=-= Content-Type: text/x-patch Content-Disposition: attachment; filename=0001-gnu-Add-xwallpaper.patch Content-Description: add xwallpaper >>From 486a6ef62aeb401bd80f960f3587187b41997085 Mon Sep 17 00:00:00 2001 From: John Soo Date: Fri, 27 Mar 2020 08:31:10 -0700 Subject: [PATCH] gnu: Add xwallpaper. * gnu/packages/image-viewers.scm (xwallpaper): New variable. --- gnu/packages/image-viewers.scm | 35 ++++++++++++++++++++++++++++++++++ 1 file changed, 35 insertions(+) diff --git a/gnu/packages/image-viewers.scm b/gnu/packages/image-viewers.scm index 8f3f61c4b1..01191b7ef5 100644 --- a/gnu/packages/image-viewers.scm +++ b/gnu/packages/image-viewers.scm @@ -596,3 +596,38 @@ with tiling window managers. Features include: @end itemize\n") (home-page "https://github.com/eXeC64/imv") (license license:expat))) + +(define-public xwallpaper + (package + (name "xwallpaper") + (version "0.6.4") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/stoeckmann/xwallpaper") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 + "175fzifvia58vah2x7509drvfn3xfv5d9szgh9x1w1a1w8rcs2hx")))) + (build-system gnu-build-system) + (inputs + `(("autoconf" ,autoconf) + ("automake" ,automake) + ("libjpeg-turbo" ,libjpeg-turbo) + ("libpng" ,libpng) + ("libxpm" ,libxpm) + ("pixman" ,pixman) + ("pkg-config" ,pkg-config) + ("xcb-util" ,xcb-util) + ("xcb-util-image" ,xcb-util-image))) + (home-page "https://github.com/stoeckmann/xwallpaper") + (synopsis "Wallpaper setting utility for X") + (description + "The xwallpaper utility allows you to set image files as your X +wallpaper. JPEG, PNG, and XPM file formats are supported. + +The wallpaper is also advertised to programs which support semi-transparent +backgrounds.") + (license license:isc))) -- 2.26.0 --=-=-=--