[Feature Request] Save SDDM Theme
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.
I'm sorry but running Konsave as root isn't possible at the moment. I'll look into it in the future :)
@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 `