mirror of
https://git.savannah.gnu.org/git/guix.git
synced 2025-01-31 23:06:59 +01:00
gnu: Add sugar-light-sddm-theme.
* gnu/packages/display-manager.scm (sugar-light-sddm-theme): New variable. Signed-off-by: Ludovic Courtès <ludo@gnu.org>
This commit is contained in:
parent
d124f94d18
commit
b850fe6ec8
1 changed files with 31 additions and 0 deletions
|
@ -220,6 +220,37 @@ (define-public sugar-dark-sddm-theme
|
||||||
experience for your users, your family and yourself")
|
experience for your users, your family and yourself")
|
||||||
(license license:gpl3+)))
|
(license license:gpl3+)))
|
||||||
|
|
||||||
|
(define-public sugar-light-sddm-theme
|
||||||
|
(package
|
||||||
|
(name "sugar-light-sddm-theme")
|
||||||
|
(version "1.0")
|
||||||
|
(source (origin
|
||||||
|
(method git-fetch)
|
||||||
|
(uri (git-reference
|
||||||
|
(url "https://github.com/MarianArlt/sddm-sugar-light")
|
||||||
|
(commit (string-append "v" version))))
|
||||||
|
(file-name (git-file-name name version))
|
||||||
|
(sha256
|
||||||
|
(base32
|
||||||
|
"1sfd5bi5jcfz3hmvvr3smalywixa70g5j96qgx1220mp6rqf886k"))))
|
||||||
|
(build-system trivial-build-system)
|
||||||
|
(arguments
|
||||||
|
`(#:modules ((guix build utils))
|
||||||
|
#:builder
|
||||||
|
(begin
|
||||||
|
(use-modules (guix build utils))
|
||||||
|
(let* ((out (assoc-ref %outputs "out"))
|
||||||
|
(sddm-themes (string-append out "/share/sddm/themes")))
|
||||||
|
(mkdir-p sddm-themes)
|
||||||
|
(copy-recursively (assoc-ref %build-inputs "source")
|
||||||
|
(string-append sddm-themes "/chili"))))))
|
||||||
|
(home-page "https://github.com/MarianArlt/sddm-sugar-light")
|
||||||
|
(synopsis "Sugar light theme for SDDM")
|
||||||
|
(description "Sugar is extremely customizable and so sweet it will
|
||||||
|
probably cause you diabetes just from looking at it. Sweeten the login
|
||||||
|
experience for your users, your family and yourself")
|
||||||
|
(license license:gpl3+)))
|
||||||
|
|
||||||
(define-public lightdm
|
(define-public lightdm
|
||||||
(package
|
(package
|
||||||
(name "lightdm")
|
(name "lightdm")
|
||||||
|
|
Loading…
Reference in a new issue