* [bug#67453] [PATCH] home: services: unclutter: Convert to non-one-shot service
@ 2023-11-26 9:00 Saku Laesvuori via Guix-patches via
2024-01-15 15:50 ` Saku Laesvuori via Guix-patches via
0 siblings, 1 reply; 3+ messages in thread
From: Saku Laesvuori via Guix-patches via @ 2023-11-26 9:00 UTC (permalink / raw)
To: 67453; +Cc: Saku Laesvuori
* 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
^ permalink raw reply related [flat|nested] 3+ messages in thread
* [bug#67453] [PATCH] home: services: unclutter: Convert to non-one-shot service
2023-11-26 9:00 [bug#67453] [PATCH] home: services: unclutter: Convert to non-one-shot service Saku Laesvuori via Guix-patches via
@ 2024-01-15 15:50 ` Saku Laesvuori via Guix-patches via
2024-03-22 9:15 ` Saku Laesvuori via Guix-patches via
0 siblings, 1 reply; 3+ messages in thread
From: Saku Laesvuori via Guix-patches via @ 2024-01-15 15:50 UTC (permalink / raw)
To: 67453
[-- Attachment #1: Type: text/plain, Size: 512 bytes --]
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.
[-- Attachment #2: signature.asc --]
[-- Type: application/pgp-signature, Size: 833 bytes --]
^ permalink raw reply [flat|nested] 3+ messages in thread
* [bug#67453] [PATCH] home: services: unclutter: Convert to non-one-shot service
2024-01-15 15:50 ` Saku Laesvuori via Guix-patches via
@ 2024-03-22 9:15 ` Saku Laesvuori via Guix-patches via
0 siblings, 0 replies; 3+ messages in thread
From: Saku Laesvuori via Guix-patches via @ 2024-03-22 9:15 UTC (permalink / raw)
To: 67453
[-- Attachment #1: Type: text/plain, Size: 615 bytes --]
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.
>
> 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
[-- Attachment #2: signature.asc --]
[-- Type: application/pgp-signature, Size: 833 bytes --]
^ permalink raw reply [flat|nested] 3+ messages in thread
end of thread, other threads:[~2024-03-22 9:40 UTC | newest]
Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2023-11-26 9:00 [bug#67453] [PATCH] home: services: unclutter: Convert to non-one-shot service Saku Laesvuori via Guix-patches via
2024-01-15 15:50 ` Saku Laesvuori via Guix-patches via
2024-03-22 9:15 ` Saku Laesvuori via Guix-patches via
Code repositories for project(s) associated with this external index
https://git.savannah.gnu.org/cgit/guix.git
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.