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
$ pacman -Ql sddm
Shows me themes are on /usr/share/sddm/themes/
$ pacman -Qo /usr/share/sddm/themes/breeze/
Gives me the package that owns the dir: plasma-desktop
So, to fix it, install plasma-desktop.
-Qo option works even if the file is deleted.
That’s the one. Thank you so much.
EDIT: Also thank you for the new commands. Never heard of those two commands. Pretty cool, honestly.
does reinstalling breeze with pacman e.g.
pacman -S breeze
work?btw you’re using archlinux right?
i’m dumb, I didn’t see that you were looking for the sddm theme
Installing breeze doesn’t work. I use endeavour OS. It happened a couple of months ago and I was able to get it back by installing plasma-workspace, but now this doesn’t work
Can I offer a ChatGPT response? I don’t really understand this stuff but here you go:
- Install the plasma-workspace and breeze packages explicitly
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.
- Manually install the sddm-breeze 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.
- Verify the theme path
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.
- Set the Breeze theme in the SDDM configuration
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
- Rebuild SDDM Cache
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.
- Manually Download and Install the Breeze Theme
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