From 58e4de03f8e497350bc24b5fd559ff817e624fbc Mon Sep 17 00:00:00 2001 From: Mathieu Othacehe Date: Sun, 3 Oct 2021 17:57:15 +0000 Subject: [PATCH] services: desktop: Add the sticky bit to the X11 socket directory. This prevents mutter from complaining that the /tmp/.X11-unix directory misses the sticky bit when starting X Wayland. * gnu/services/desktop.scm (x11-socket-directory-service): Add the sticky bit. --- gnu/services/desktop.scm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/gnu/services/desktop.scm b/gnu/services/desktop.scm index 64d0e85301..612d548eea 100644 --- a/gnu/services/desktop.scm +++ b/gnu/services/desktop.scm @@ -1021,7 +1021,7 @@ (define x11-socket-directory-service (use-modules (guix build utils)) (let ((directory "/tmp/.X11-unix")) (mkdir-p directory) - (chmod directory #o777)))))) + (chmod directory #o1777)))))) ;;; ;;; Enlightenment desktop service.