summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--gnu/packages/display-managers.scm26
1 files changed, 26 insertions, 0 deletions
diff --git a/gnu/packages/display-managers.scm b/gnu/packages/display-managers.scm
index 9ae76bd51d6..c2982a32433 100644
--- a/gnu/packages/display-managers.scm
+++ b/gnu/packages/display-managers.scm
@@ -364,6 +364,32 @@ probably cause you diabetes just from looking at it. Sweeten the login
364experience for your users, your family and yourself") 364experience for your users, your family and yourself")
365 (license license:gpl3+))) 365 (license license:gpl3+)))
366 366
367(define-public where-is-my-sddm-theme
368 (package
369 (name "where-is-my-sddm-theme")
370 (version "1.12.0")
371 (source (origin
372 (method git-fetch)
373 (uri (git-reference
374 (url "https://github.com/stepanzubkov/where-is-my-sddm-theme")
375 (commit (string-append "v" version))))
376 (file-name (git-file-name name version))
377 (sha256
378 (base32
379 "0a30rlknxz855qsrc3ksyic4cj5axm6pwk5nya3nlbqjrrghy7gr"))))
380 (build-system copy-build-system)
381 (arguments
382 `(#:install-plan '(("where_is_my_sddm_theme" "/share/sddm/themes/")
383 ("where_is_my_sddm_theme_qt5" "/share/sddm/themes/"))))
384 (home-page "https://github.com/stepanzubkov/where-is-my-sddm-theme")
385 (synopsis "Minimal SDDM theme, simply a black screen and a password")
386 (description
387 "This package is a @emph{minimalist and highly customizable} SDDM theme.
388It's only a black screen and a password input field. Nothing extra, right?
389Even when you enter the wrong password it will only show a red border around
390the screen.")
391 (license license:gpl3+)))
392
367(define-public lightdm 393(define-public lightdm
368 (package 394 (package
369 (name "lightdm") 395 (name "lightdm")