I have deleted my Breeze theme for SDDM (don’t ask me how and why. lol) and I can’t find it anywhere. I have tried sudo pacman -S plasma-workspace
, but it is not getting installed. Any other way to install it?
Thank you in advance
I have deleted my Breeze theme for SDDM (don’t ask me how and why. lol) and I can’t find it anywhere. I have tried sudo pacman -S plasma-workspace
, but it is not getting installed. Any other way to install it?
Thank you in advance
Can I offer a ChatGPT response? I don’t really understand this stuff but here you go:
Run the following commands to ensure both the plasma-workspace and breeze packages are installed:
bash
sudo pacman -S plasma-workspace breeze
This will reinstall the breeze theme files if they are missing. If breeze was not listed as a dependency of plasma-workspace, this might restore the theme.
The sddm-breeze theme is often part of the breeze package, but if it’s still missing, you can reinstall it specifically:
bash
sudo pacman -S sddm-breeze
If you’re using a distribution like Arch Linux that separates components, this package might not be installed by default.
After installation, confirm that the theme files exist in /usr/share/sddm/themes/breeze.
Use:
bash
ls /usr/share/sddm/themes/breeze
If the directory exists and contains files, proceed to the next step. If not, something is wrong with the installation.
Once you have the breeze theme installed, set it as the SDDM theme. Edit the SDDM configuration file:
bash
sudo nano /etc/sddm.conf.d/kde_settings.conf
Ensure the following line is present under the [Theme] section:
ini
[Theme]
Current=breeze
Save the file and restart SDDM:
bash
sudo systemctl restart sddm
Sometimes, SDDM might not pick up the theme due to cache issues. Clear and rebuild it:
bash
sudo rm -rf /var/lib/sddm/.cache
Restart SDDM after clearing the cache.
If all else fails, manually download the Breeze theme files. The source code for Breeze themes is often available on KDE’s GitLab. Clone or download the repository and place it in /usr/share/sddm/themes:
bash
git clone https://invent.kde.org/plasma/breeze-sddm-theme.git
sudo mv breeze-sddm-theme /usr/share/sddm/themes/breeze
Then, restart SDDM as before.
None of this works. Also git cloning the breeze theme asks for a username and password which I do have, but never work