guix_mirror_bot pushed a commit to branch master
in repository guix.
commit b2ab26dd0b75d68da3e6416bcbfd16532f2dea2b
Author: ColdSideOfYourPillow <[email protected]>
AuthorDate: Sat Aug 9 19:51:59 2025 +0530
gnu: Add where-is-my-sddm-theme.
* gnu/packages/display-managers.scm: Add where-is-my-sddm-theme.
Change-Id: I113601c6cf6e4916a17e038957c34cff79c55a98
Signed-off-by: Steve George <[email protected]>
---
gnu/packages/display-managers.scm | 26 ++++++++++++++++++++++++++
1 file changed, 26 insertions(+)
diff --git a/gnu/packages/display-managers.scm
b/gnu/packages/display-managers.scm
index 9ae76bd51d..c2982a3243 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
experience for your users, your family and yourself")
(license license:gpl3+)))
+(define-public where-is-my-sddm-theme
+ (package
+ (name "where-is-my-sddm-theme")
+ (version "1.12.0")
+ (source (origin
+ (method git-fetch)
+ (uri (git-reference
+ (url
"https://github.com/stepanzubkov/where-is-my-sddm-theme")
+ (commit (string-append "v" version))))
+ (file-name (git-file-name name version))
+ (sha256
+ (base32
+ "0a30rlknxz855qsrc3ksyic4cj5axm6pwk5nya3nlbqjrrghy7gr"))))
+ (build-system copy-build-system)
+ (arguments
+ `(#:install-plan '(("where_is_my_sddm_theme" "/share/sddm/themes/")
+ ("where_is_my_sddm_theme_qt5"
"/share/sddm/themes/"))))
+ (home-page "https://github.com/stepanzubkov/where-is-my-sddm-theme")
+ (synopsis "Minimal SDDM theme, simply a black screen and a password")
+ (description
+ "This package is a @emph{minimalist and highly customizable} SDDM theme.
+It's only a black screen and a password input field. Nothing extra, right?
+Even when you enter the wrong password it will only show a red border around
+the screen.")
+ (license license:gpl3+)))
+
(define-public lightdm
(package
(name "lightdm")