diff options
Diffstat (limited to 'gnu/packages/display-managers.scm')
-rw-r--r-- | gnu/packages/display-managers.scm | 37 |
1 files changed, 32 insertions, 5 deletions
diff --git a/gnu/packages/display-managers.scm b/gnu/packages/display-managers.scm index 2ec3cb70e1..c30885573a 100644 --- a/gnu/packages/display-managers.scm +++ b/gnu/packages/display-managers.scm @@ -12,7 +12,7 @@ ;;; Copyright © 2021 Zheng Junjie <873216071@qq.com> ;;; Copyright © 2021-2023 Efraim Flashner <efraim@flashner.co.il> ;;; Copyright © 2021 Petr Hodina <phodina@protonmail.com> -;;; Copyright © 2022, 2023 Maxim Cournoyer <maxim.cournoyer@gmail.com> +;;; Copyright © 2022, 2023 Maxim Cournoyer <maxim@guixotic.coop> ;;; Copyright © 2024 Janneke Nieuwenhuizen <janneke@gnu.org> ;;; ;;; This file is part of GNU Guix. @@ -196,7 +196,8 @@ background with abstract shapes. Inspired by solarized-sddm-theme.") (license license:gpl3+)))) (define-public dexy-color-sddm-theme - (let ((commit "7929384dbb9305e6da53a8942bca3d75593fd99f") + ;; No upstream releases or tags + (let ((commit "4785d3b80d725cf55cecd7b27181f77151c4e3e2") (revision "0")) (package (name "dexy-color-sddm-theme") @@ -209,7 +210,7 @@ background with abstract shapes. Inspired by solarized-sddm-theme.") (file-name (git-file-name name version)) (sha256 (base32 - "1dcp3pvs6x63740sz852yr19fjrdnh81dbrq7rssgm6ssi1rqjig")))) + "14fzc4kq50ii1qmmvnp9gxig504zfx1rsfsp0wq9bay7d72j282c")))) (build-system copy-build-system) (arguments `(#:install-plan '(("Dexy-Color-SDDM" @@ -217,8 +218,8 @@ background with abstract shapes. Inspired by solarized-sddm-theme.") (home-page "https://github.com/L4ki/Dexy-Plasma-Themes") (synopsis "Dexy Color theme for SDDM") (description - "This package provides a minimalistic and modern SDDM theme with blured -background.") + "This package provides a minimalistic and modern SDDM theme with a +blurred background.") (license license:gpl3+)))) (define-public guix-simplyblack-sddm-theme @@ -364,6 +365,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") |