From unknown Fri Jun 20 18:21:33 2025 Content-Disposition: inline Content-Transfer-Encoding: quoted-printable MIME-Version: 1.0 X-Mailer: MIME-tools 5.509 (Entity 5.509) Content-Type: text/plain; charset=utf-8 From: bug#67453 <67453@debbugs.gnu.org> To: bug#67453 <67453@debbugs.gnu.org> Subject: Status: [PATCH] home: services: unclutter: Convert to non-one-shot service Reply-To: bug#67453 <67453@debbugs.gnu.org> Date: Sat, 21 Jun 2025 01:21:33 +0000 retitle 67453 [PATCH] home: services: unclutter: Convert to non-one-shot se= rvice reassign 67453 guix-patches submitter 67453 Saku Laesvuori severity 67453 normal tag 67453 patch thanks From debbugs-submit-bounces@debbugs.gnu.org Sun Nov 26 04:01:22 2023 Received: (at submit) by debbugs.gnu.org; 26 Nov 2023 09:01:22 +0000 Received: from localhost ([127.0.0.1]:40686 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1r7B10-0004UI-GI for submit@debbugs.gnu.org; Sun, 26 Nov 2023 04:01:22 -0500 Received: from lists.gnu.org ([2001:470:142::17]:41210) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1r7B0z-0004Ty-F0 for submit@debbugs.gnu.org; Sun, 26 Nov 2023 04:01:21 -0500 Received: from eggs.gnu.org ([2001:470:142:3::10]) by lists.gnu.org with esmtps (TLS1.2:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.90_1) (envelope-from ) id 1r7B0m-0000D3-4p for guix-patches@gnu.org; Sun, 26 Nov 2023 04:01:08 -0500 Received: from vmi571514.contaboserver.net ([75.119.130.101] helo=mail.laesvuori.fi) by eggs.gnu.org with esmtps (TLS1.2:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.90_1) (envelope-from ) id 1r7B0h-0004dc-R5 for guix-patches@gnu.org; Sun, 26 Nov 2023 04:01:07 -0500 Received: from X-kone.lan (88-113-24-127.elisa-laajakaista.fi [88.113.24.127]) by mail.laesvuori.fi (Postfix) with ESMTPSA id 3EF6A34014B; Sun, 26 Nov 2023 10:02:09 +0100 (CET) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=laesvuori.fi; s=mail; t=1700989330; bh=rbfJVbCljm6q85sbI+0lnBoscoFmw8pd+E8w1DDx34E=; h=From:To:Cc:Subject:Date; b=IrlXX0VKYVa22WXLE013UtJeJngskKnGroGCVrUYQQGv5TUeyjmSpTzVJpR7/u0JX nfqz10LmIh0NYsdNHDxaPMJYGl6XDXGREPFvCOMK+xEIX7x8AKVs1HgC7B7/CCLof7 0sSqpb4iyeRuaDB3SRVhguPRydLDoaghTeteYCoU= From: Saku Laesvuori To: guix-patches@gnu.org Subject: [PATCH] home: services: unclutter: Convert to non-one-shot service Date: Sun, 26 Nov 2023 11:00:15 +0200 Message-ID: X-Mailer: git-send-email 2.41.0 MIME-Version: 1.0 X-Debbugs-Cc: ( , Andrew Tropin , Ludovic Courtès Content-Transfer-Encoding: 8bit Received-SPF: pass client-ip=75.119.130.101; envelope-from=saku@laesvuori.fi; helo=mail.laesvuori.fi X-Spam_score_int: -20 X-Spam_score: -2.1 X-Spam_bar: -- X-Spam_report: (-2.1 / 5.0 requ) BAYES_00=-1.9, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-0.1, DKIM_VALID_EF=-0.1, SPF_HELO_PASS=-0.001, SPF_PASS=-0.001, T_SCC_BODY_TEXT_LINE=-0.01 autolearn=ham autolearn_force=no X-Spam_action: no action X-Spam-Score: 0.9 (/) X-Debbugs-Envelope-To: submit Cc: Saku Laesvuori X-BeenThere: debbugs-submit@debbugs.gnu.org X-Mailman-Version: 2.1.18 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: debbugs-submit-bounces@debbugs.gnu.org Sender: "Debbugs-submit" X-Spam-Score: -0.1 (/) * gnu/home/services/desktop.scm (home-unclutter-shepherd-service) [one-shot?]: Remove field. [stop]: Add kill action. Change-Id: I33551607b05dbac30da94f81fd605ff9624ebe24 --- gnu/home/services/desktop.scm | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/gnu/home/services/desktop.scm b/gnu/home/services/desktop.scm index 91465bf168..6bb117ea8c 100644 --- a/gnu/home/services/desktop.scm +++ b/gnu/home/services/desktop.scm @@ -347,7 +347,6 @@ (define (home-unclutter-shepherd-service config) (shepherd-service (provision '(unclutter)) (requirement '()) - (one-shot? #t) (start #~(make-forkexec-constructor (list #$(file-append @@ -360,7 +359,8 @@ (define (home-unclutter-shepherd-service config) (or (getenv "XDG_STATE_HOME") (format #f "~a/.local/state" (getenv "HOME"))) - "/log/unclutter.log")))))) + "/log/unclutter.log"))) + (stop #~(make-kill-destructor))))) (define home-unclutter-service-type (service-type base-commit: 9f67681db15d22f7ede5488315d52b78e357343e -- 2.41.0 From debbugs-submit-bounces@debbugs.gnu.org Mon Jan 15 10:50:31 2024 Received: (at submit) by debbugs.gnu.org; 15 Jan 2024 15:50:31 +0000 Received: from localhost ([127.0.0.1]:46716 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1rPPEN-0005cv-8u for submit@debbugs.gnu.org; Mon, 15 Jan 2024 10:50:31 -0500 Received: from lists.gnu.org ([2001:470:142::17]:56824) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1rPPEL-0005ci-AC for submit@debbugs.gnu.org; Mon, 15 Jan 2024 10:50:29 -0500 Received: from eggs.gnu.org ([2001:470:142:3::10]) by lists.gnu.org with esmtps (TLS1.2:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.90_1) (envelope-from ) id 1rPPEF-0004tp-78 for guix-patches@gnu.org; Mon, 15 Jan 2024 10:50:23 -0500 Received: from vmi571514.contaboserver.net ([75.119.130.101] helo=mail.laesvuori.fi) by eggs.gnu.org with esmtps (TLS1.2:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.90_1) (envelope-from ) id 1rPPED-0007vN-OH for guix-patches@gnu.org; Mon, 15 Jan 2024 10:50:22 -0500 Received: from X-kone (88-113-24-127.elisa-laajakaista.fi [88.113.24.127]) by mail.laesvuori.fi (Postfix) with ESMTPSA id B8D62342BB9 for ; Mon, 15 Jan 2024 16:50:38 +0100 (CET) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=laesvuori.fi; s=mail; t=1705333839; bh=Re2KTbkLpUlCuckcFOdhknjLWCgnERylPZr2v7ruSWw=; h=Date:From:To:Subject:References:In-Reply-To; b=h4ID7Hg6Jp40fPYtI1SYtEzg/JWen6qVPmR2Vo4J3bYJXPTk2URnII2o8VdoICbe1 bFT8QoD/bqs/UbQCUt99tZJNypV3CXe1eApCn3ge6mBB3oyAKY8O4fOc4UZEwGTD1r yIN7HVJbgaqA0/aztS033pFqIaemm/vadxbO0dZ0= Date: Mon, 15 Jan 2024 17:50:12 +0200 From: Saku Laesvuori To: guix-patches@gnu.org Subject: Re: [PATCH] home: services: unclutter: Convert to non-one-shot service Message-ID: References: MIME-Version: 1.0 Content-Type: multipart/signed; micalg=pgp-sha256; protocol="application/pgp-signature"; boundary="idxpw6biuifcygjn" Content-Disposition: inline In-Reply-To: Received-SPF: pass client-ip=75.119.130.101; envelope-from=saku@laesvuori.fi; helo=mail.laesvuori.fi X-Spam_score_int: -20 X-Spam_score: -2.1 X-Spam_bar: -- X-Spam_report: (-2.1 / 5.0 requ) BAYES_00=-1.9, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-0.1, DKIM_VALID_EF=-0.1, SPF_HELO_PASS=-0.001, SPF_PASS=-0.001, T_SCC_BODY_TEXT_LINE=-0.01 autolearn=ham autolearn_force=no X-Spam_action: no action X-Spam-Score: 0.9 (/) X-Debbugs-Envelope-To: submit X-BeenThere: debbugs-submit@debbugs.gnu.org X-Mailman-Version: 2.1.18 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: debbugs-submit-bounces@debbugs.gnu.org Sender: "Debbugs-submit" X-Spam-Score: -0.1 (/) --idxpw6biuifcygjn Content-Type: text/plain; charset=us-ascii Content-Disposition: inline On Sun, Nov 26, 2023 at 11:00:15AM +0200, Saku Laesvuori wrote: > * gnu/home/services/desktop.scm (home-unclutter-shepherd-service) > [one-shot?]: Remove field. > [stop]: Add kill action. A reminder about this trivial change. The unclutter service spawns a process that hides the cursor when it is inactive. The process runs for the entire session and killing it causes the cursor to stay visible even when inactive, so it seems to me that it should be provided by a normal service that can be started/stopped. --idxpw6biuifcygjn Content-Type: application/pgp-signature; name="signature.asc" -----BEGIN PGP SIGNATURE----- iQIzBAABCAAdFiEEoMkZR3NPB29fCOn/JX0oSiodOjIFAmWlVDQACgkQJX0oSiod OjItFQ//SwUo4D4K8COWqcZCj4pvXOjSriJKDi+S99zPgNGAS1DCh9VMZIq2HPYi IInrJqHWcfB6ioJQIL7SE8TYT1etGGezgvkCxgnKpfU4O/BvsG843hXhIiCtXXFH SgGE3sZCWsAGX1Jp3uKleooL3/WgrV7BJTKHZ6/F8fugxj6V6y53rlgvOiV8tTow fayijqV+5VV7UkCrxjz/qx+CBiOEuWvrUHAWTIqO87Hmv0Aq7vtWvlH5OX4W9zQw wSR/Dg/V69BbBTyRFCMFWmrAYZKkfWw5vMpCCPXuXaZUmo0vpviaH0pRqbdT14Y1 U6Sll8Ojquecbyx+IPkJIN9NVTR4Xs+kZ+e9JrDUpizWtcwhX/lbI9XIaVwd3Yf4 sT9ZQYFOcBV/U/c376nCgFhY8dEhqgV43kY+7mASWjLVXdpBajmIGfmryf2WHjT+ TPhKgBl8qdokQ4sWpbDsQpKSIADd7Ky4lbhQoV12gOds3xpr04wFzQgbFszzBejN DquDIYM5FusMh8j5mDyCGFsqrUqyXrAzhy4D6LDcbYfa2CQExWoX2rxaNY7Tm9e1 wb97Ebk56iUHZZMrqQ1aqkv7g5sw9Iuu42OfxSbTQWp+9K9sbGKPtwLAxipp/Z6H GksLabCJt8Xp1OzRZ2dk5+z5vuWi3XKUPPmQOICE/tpZTOwjo9Q= =zJ1o -----END PGP SIGNATURE----- --idxpw6biuifcygjn-- From debbugs-submit-bounces@debbugs.gnu.org Fri Mar 22 05:40:23 2024 Received: (at 67453) by debbugs.gnu.org; 22 Mar 2024 09:40:23 +0000 Received: from localhost ([127.0.0.1]:37741 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1rnbNu-00063H-E6 for submit@debbugs.gnu.org; Fri, 22 Mar 2024 05:40:23 -0400 Received: from vmi571514.contaboserver.net ([75.119.130.101]:35548 helo=mail.laesvuori.fi) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1rnb6x-00056g-DE for 67453@debbugs.gnu.org; Fri, 22 Mar 2024 05:22:52 -0400 Received: from X-kone (unknown [130.233.144.107]) by mail.laesvuori.fi (Postfix) with ESMTPSA id 9DC7B343653 for <67453@debbugs.gnu.org>; Fri, 22 Mar 2024 10:15:48 +0100 (CET) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=laesvuori.fi; s=mail; t=1711098948; bh=rmB4VOZGJyk0xpY7exu0Vr4+xOuUfWgvbbV15zU0rTI=; h=Date:From:To:Subject:References:In-Reply-To; b=RrwXzt8RyiP0bLivPp1ojst8R0ar9pNXRfFp9+O6os0toOOwD6AmYiciEntY9hhc5 hnJ+2XD5FaskL0MabSy1rpG00JnduLjxiDwgqbwjTdY62oaOzdo+7ORcHqFnKFo4Hn dy4Q0mtpsRvsNr/RNbEe7RxME8Cck8iMJXrSrUp0= Date: Fri, 22 Mar 2024 11:15:41 +0200 From: Saku Laesvuori To: 67453@debbugs.gnu.org Subject: Re: [bug#67453] [PATCH] home: services: unclutter: Convert to non-one-shot service Message-ID: References: MIME-Version: 1.0 Content-Type: multipart/signed; micalg=pgp-sha256; protocol="application/pgp-signature"; boundary="xf46udgkzixgc6r4" Content-Disposition: inline In-Reply-To: X-Spam-Score: -0.0 (/) X-Debbugs-Envelope-To: 67453 X-BeenThere: debbugs-submit@debbugs.gnu.org X-Mailman-Version: 2.1.18 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: debbugs-submit-bounces@debbugs.gnu.org Sender: "Debbugs-submit" X-Spam-Score: -1.0 (-) --xf46udgkzixgc6r4 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline Content-Transfer-Encoding: quoted-printable On Mon, Jan 15, 2024 at 05:50:12PM +0200, Saku Laesvuori wrote: > On Sun, Nov 26, 2023 at 11:00:15AM +0200, Saku Laesvuori wrote: > > * gnu/home/services/desktop.scm (home-unclutter-shepherd-service) > > [one-shot?]: Remove field. > > [stop]: Add kill action. >=20 > A reminder about this trivial change. The unclutter service spawns a > process that hides the cursor when it is inactive. The process runs for > the entire session and killing it causes the cursor to stay visible even > when inactive, so it seems to me that it should be provided by a normal > service that can be started/stopped. Ping --xf46udgkzixgc6r4 Content-Type: application/pgp-signature; name="signature.asc" -----BEGIN PGP SIGNATURE----- iQIzBAABCAAdFiEEoMkZR3NPB29fCOn/JX0oSiodOjIFAmX9TD0ACgkQJX0oSiod OjLHkRAAsqIpY7C2VU0nFg3jQ/oGPLNCV/s3wCB88TKGK4uq72XQQhDmJ84kkzY4 6n/NkXD3Rj9MEn4QZSkhBL65hYJrZKO9aF87h+zY+yNxWhEmt1DBhTUtMNgKUwfl 0mIsGzpAMRMBaK2GukzoxjZITcz/UZ0ZkDL8XzFSAueF1KajiYAo50PXSaAd905W 5hhpkWuc/minGt/s259BMq1OpV7MBfKiZwyNHBPyG5sCp8/Xbx8PxCQorOM+CF2X KzmUzb52qf7gwyUwM/nDMtnaux468IX4odhsquymYCeRHIuTegg/u423Tj5p/GQV YTQoP55Kx09e8AHYCIqx6Hodg1HU0ZaN0vGOfwFFXH0VUhmlcKDMUsfpH+GsOeJk D5v0N8tHf2bvPdkKeDo2wV2nYRqkzE6iFOGPbLqimKh5stM/7DhLsjiEibBg3tUf P4hGRssqll8g8BmN3jmdJaMQehOCvFg+xFR0EmgJ3GyCZVJr8gMBl0zuZlKasUS2 6AnaqWhnRNgBVIwLQWhHQbh44snREZ8DzJ5P4xQhLeaA+qp59pJltfoWFPozdHnA mQktSGNHqxBoO1k/pPDHxAjOO3Sv4AAsGBVxuBVhv4FQ/Lhi0DT86C2e4OaQVY0t Lqa17rUh78/FOzfcRrjXD1B2lb/VyYmFYxbKc1T954cYlZnOV0o= =qBe4 -----END PGP SIGNATURE----- --xf46udgkzixgc6r4-- From debbugs-submit-bounces@debbugs.gnu.org Sun Mar 02 04:03:16 2025 Received: (at 67453-done) by debbugs.gnu.org; 2 Mar 2025 09:03:16 +0000 Received: from localhost ([127.0.0.1]:53049 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1tofEB-0003nH-78 for submit@debbugs.gnu.org; Sun, 02 Mar 2025 04:03:15 -0500 Received: from msg-2.mailo.com ([213.182.54.12]:45888 helo=mailo.com) by debbugs.gnu.org with esmtps (TLS1.2:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.84_2) (envelope-from ) id 1tofE8-0003mP-Md for 67453-done@debbugs.gnu.org; Sun, 02 Mar 2025 04:03:13 -0500 DKIM-Signature: v=1; a=rsa-sha256; c=simple/simple; d=nicolasgoaziou.fr; s=mailo; t=1740906184; bh=PoIdoZPUgm/IMzIh5gBOozqXTR4TIxd0idY2U6pzK6c=; h=X-EA-Auth:From:To:Cc:Subject:In-Reply-To:Date:Message-ID: MIME-Version:Content-Type:Content-Transfer-Encoding; b=CU9lHR/BFwVkvYbLNpJAhl9fHGS8B5DJWumBmzOx5evt0wfRpxNZ1X1WXCWtA3ep8 JMf/6/FK4VYj6xWtCbFH00I2qYAitDXQYanAR/4brdE2c0sigG6hOi6ISwTrluO9w/ lgh2GHkeoq5XAsnYeBobtc2b+lQmbnuPzp5zFNzg= Received: by b221-1.in.mailobj.net [192.168.90.21] with ESMTP via ip-20.mailobj.net [213.182.54.20] Sun, 2 Mar 2025 10:03:04 +0100 (CET) X-EA-Auth: Ko2gLWr2XDbw3cMm8m1LEg2WW0cZhuxmELntORK85rZsZHYV0W7TjeNG/qr0KkXUIL5kyWGZyI2/fd+ZHyLGUBXzZhKlhBITwmFMr0OP5uc= From: Nicolas Goaziou To: 67453-done@debbugs.gnu.org Subject: Re: [PATCH] home: services: unclutter: Convert to non-one-shot service In-Reply-To: Date: Sun, 02 Mar 2025 10:02:47 +0100 Message-ID: <87y0xnbya0.fsf@nicolasgoaziou.fr> MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: quoted-printable X-Spam-Score: 0.0 (/) X-Debbugs-Envelope-To: 67453-done Cc: Saku Laesvuori X-BeenThere: debbugs-submit@debbugs.gnu.org X-Mailman-Version: 2.1.18 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: debbugs-submit-bounces@debbugs.gnu.org Sender: "Debbugs-submit" X-Spam-Score: -1.0 (-) Hello, > On Mon, Jan 15, 2024 at 05:50:12PM +0200, Saku Laesvuori wrote: > > On Sun, Nov 26, 2023 at 11:00:15AM +0200, Saku Laesvuori wrote: > > > * gnu/home/services/desktop.scm (home-unclutter-shepherd-service) > > > [one-shot?]: Remove field. > > > [stop]: Add kill action. > >=20 > > A reminder about this trivial change. The unclutter service spawns a > > process that hides the cursor when it is inactive. The process runs for > > the entire session and killing it causes the cursor to stay visible even > > when inactive, so it seems to me that it should be provided by a normal > > service that can be started/stopped. >=20 > Ping Thank you for the patch! Unfortunately, it seems it felt through the cracks. I=E2=80=99m sorry about that. The proposed change was applied recently to the service, so I=E2=80=99m clo= sing this report. Regards, --=20 Nicolas Goaziou From unknown Fri Jun 20 18:21:33 2025 Received: (at fakecontrol) by fakecontrolmessage; To: internal_control@debbugs.gnu.org From: Debbugs Internal Request Subject: Internal Control Message-Id: bug archived. Date: Sun, 30 Mar 2025 11:24:28 +0000 User-Agent: Fakemail v42.6.9 # This is a fake control message. # # The action: # bug archived. thanks # This fakemail brought to you by your local debbugs # administrator