22 lines
592 B
Markdown
22 lines
592 B
Markdown
# SDDM
|
|
|
|
|
|
## Installation and setup
|
|
|
|
- Install sddm package (`sudo pacman -S sddm`)
|
|
- Enable and start service `sudo systemctl enable sddm && sudo systemctl start sddm`
|
|
|
|
## Configuration
|
|
|
|
- Theme configuration file in `/etc/sddm.conf.d/kde_settings.conf`
|
|
- Preview sddm theme `sddm-greeter-qt6 --test-mode --theme /usr/share/sddm/themes/chili/`
|
|
- Change background - `/usr/share/sddm/themes/[theme_name]/theme.conf`
|
|
|
|
```conf
|
|
[General]
|
|
background=/path/to/background.png
|
|
```
|
|
|
|
- Create script for previewing all installed sddm themes
|
|
- Source: [Arch wiki](https://wiki.archlinux.org/title/SDDM)
|