From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([208.118.235.92]:34727) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1fwwVR-0001w4-MB for guix-patches@gnu.org; Mon, 03 Sep 2018 17:35:34 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1fwwP8-0001vC-Dz for guix-patches@gnu.org; Mon, 03 Sep 2018 17:29:03 -0400 Received: from debbugs.gnu.org ([208.118.235.43]:39665) by eggs.gnu.org with esmtps (TLS1.0:RSA_AES_128_CBC_SHA1:16) (Exim 4.71) (envelope-from ) id 1fwwP8-0001v4-8b for guix-patches@gnu.org; Mon, 03 Sep 2018 17:29:02 -0400 Received: from Debian-debbugs by debbugs.gnu.org with local (Exim 4.84_2) (envelope-from ) id 1fwwP8-00080v-3i for guix-patches@gnu.org; Mon, 03 Sep 2018 17:29:02 -0400 Subject: bug#32611: [PATCH] xorg.scm - add transset-df Resent-To: guix-patches@gnu.org Resent-Message-ID: From: ludo@gnu.org (Ludovic =?UTF-8?Q?Court=C3=A8s?=) References: <87a7p0h86d.fsf@jnanam.net> Date: Mon, 03 Sep 2018 23:28:29 +0200 In-Reply-To: <87a7p0h86d.fsf@jnanam.net> (Benjamin Slade's message of "Sat, 01 Sep 2018 21:47:38 -0600") Message-ID: <87pnxuuv7m.fsf@gnu.org> 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: Benjamin Slade Cc: 32611-done@debbugs.gnu.org --=-=-= Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: quoted-printable Hi Benjamin, I applied with the minor changes below, added a commit log that follows our convention, and pushed. Thanks! Ludo=E2=80=99. --=-=-= Content-Type: text/x-patch Content-Disposition: inline diff --git a/gnu/packages/xorg.scm b/gnu/packages/xorg.scm index 1abf95fb3..c89661272 100644 --- a/gnu/packages/xorg.scm +++ b/gnu/packages/xorg.scm @@ -6223,17 +6223,18 @@ mouse click. You can do everything mouse can do with a keyboard.") (lambda* (#:key outputs #:allow-other-keys) (let* ((out (assoc-ref outputs "out")) (bin (string-append out "/bin"))) - (mkdir-p bin) - (copy-file "transset-df" (string-append bin "/transset-df")) + (install-file "transset-df" bin) #t)))))) (native-inputs `(("pkg-config" ,pkg-config))) (inputs `(("libxcomposite" ,libxcomposite) - ("libxdamager" ,libxdamage) ("libxrender" ,libxrender))) - (synopsis "Patched version of X.Org's transset with added functionality") - (description "A patched version of X.Org's transset with added functionality, -including: selecting window by clicking (as transset), selecting -windows by pointing select actual focused X11 window, selecting by -window name or id, forcing toggle increase or decrease opacity") + ("libxdamager" ,libxdamage) + ("libxrender" ,libxrender))) + (synopsis "Set the transparency of X11 windows") + (description "The @command{transset-df} command allows you to set the +opacity of X11 windows. This patched version of X.Org's @command{transset} +adds functionality, including: selecting window by clicking (as transset), +selecting windows by pointing select actual focused X11 window, selecting by +window name or id, forcing toggle, increase or decrease opacity.") (home-page "http://forchheimer.se/transset-df/") - (license x11))) + (license license:x11))) --=-=-=--