konsave icon indicating copy to clipboard operation
konsave copied to clipboard

[Feature Request] Save SDDM Theme

Open ChrTall opened this issue 4 years ago • 2 comments

I was wondering, if it is possible to also save the SSDM login screen and if so what folders or files I have to add to the configuration. I know this would requrire root permissions, but if I run konsave with sudo it says command not found.

ChrTall avatar Sep 21 '21 21:09 ChrTall

I'm sorry but running Konsave as root isn't possible at the moment. I'll look into it in the future :)

Prayag2 avatar Sep 27 '21 18:09 Prayag2

@ChrTall You can install sddm themes using something like this in the command line. Insert the name of the sddm theme of your choice and the directory with the theme. Just copy the folder with the theme you are using from your /usr/share/sddm/themes directory and add to your project, for example. I used this in my fork of an Arch installer script and it worked perfectly fine.

`systemctl enable sddm.service # if it isn't enabled yet

if [ -d /usr/share/sddm/themes ]; then cp -a ${HOME}/insertNameOfDir/Sweet /usr/share/sddm/themes/ else mkdir -p /usr/share/sddm/themes && cp -a ${HOME}/insertNameOfDir/Sweet /usr/share/sddm/themes; fi cat <<EOF > /etc/sddm.conf [Theme] Current=Sweet EOF `

x-crowbar-x avatar Dec 07 '21 16:12 x-crowbar-x