mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2024-12-24 21:38:07 -05:00
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.
This commit is contained in:
parent
31cf1530a4
commit
58e4de03f8
1 changed files with 1 additions and 1 deletions
|
@ -1021,7 +1021,7 @@ (define x11-socket-directory-service
|
||||||
(use-modules (guix build utils))
|
(use-modules (guix build utils))
|
||||||
(let ((directory "/tmp/.X11-unix"))
|
(let ((directory "/tmp/.X11-unix"))
|
||||||
(mkdir-p directory)
|
(mkdir-p directory)
|
||||||
(chmod directory #o777))))))
|
(chmod directory #o1777))))))
|
||||||
|
|
||||||
;;;
|
;;;
|
||||||
;;; Enlightenment desktop service.
|
;;; Enlightenment desktop service.
|
||||||
|
|
Loading…
Reference in a new issue