diff --git a/doc/guix.texi b/doc/guix.texi index 1b3bd0ea26..fa3aa6d66d 100644 --- a/doc/guix.texi +++ b/doc/guix.texi @@ -4579,6 +4579,10 @@ Session type using the Ratpoison window manager. Session type using the WindowMaker window manager. @end defvr +@defvr {Scheme Variable} %sawfish-session-type +Session type using the Sawfish window manager. +@end defvr + @defvr {Scheme Variable} %default-theme @defvrx {Scheme Variable} %default-theme-name The G-Expression denoting the default SLiM theme and its name. diff --git a/gnu/services/xorg.scm b/gnu/services/xorg.scm index ba9731695e..46098da75e 100644 --- a/gnu/services/xorg.scm +++ b/gnu/services/xorg.scm @@ -27,6 +27,7 @@ (define-module (gnu services xorg) #:use-module (gnu packages slim) #:use-module (gnu packages ratpoison) #:use-module (gnu packages gnustep) + #:use-module (gnu packages sawfish) #:use-module (gnu packages admin) #:use-module (gnu packages bash) #:use-module (guix gexp) @@ -41,6 +42,7 @@ (define-module (gnu services xorg) %default-xsessions %ratpoison-session-type %windowmaker-session-type + %sawfish-session-type session-type? session-type-name @@ -194,6 +196,11 @@ (define %ratpoison-session-type (name "Ratpoison") (executable #~(string-append #$ratpoison "/bin/ratpoison")))) +(define %sawfish-session-type + (session-type + (name "Sawfish") + (executable #~(string-append #$sawfish "/bin/sawfish")))) + (define %default-xsessions ;; Default session types available to the log-in manager. (list %windowmaker-session-type %ratpoison-session-type))