Jonathan Brielmaier via Guix-patches via writes: > Hi Zheng Junjie, > > I don't unstand the following sentence in the news.scm: > If you set a theme but still show the default theme, set the sddm for > @code{sddm-qt5} to @code{sddm-qt5}. > > ~Jonathan Can you come up with a better one, now sddm enable qt6 as default, so when people use qt5 themes (e.g. chili-sddm-theme) only the default sddm theme will be displayed unless sddm-qt5 is used. ``` qt5 theme and sddm(qt6) (service sddm-service-type (sddm-configuration (sddm sddm) (theme "chili"))) ``` show default theme, not chili. ``` qt5 theme and sddm(qt5) (service sddm-service-type (sddm-configuration (sddm sddm-qt5) (theme "chili"))) ``` show chili theme ``` qt6 theme and sddm(qt6) (service sddm-service-type (sddm-configuration (sddm sddm) (theme "breeze"))) ``` show breeze theme