Go to file
Pier Luigi Fiorini d1345e5207 Use Arch Linux with Travis CI (#667)
Ubuntu is too old for us, this instead will give us a cleaner CI.
2016-08-15 12:34:42 +02:00
cmake Add license to cmake files 2014-11-18 10:04:12 +01:00
components Allow for overriding the text color of PasswordBox 2016-01-25 08:59:45 +02:00
data Added Swedish as language 2016-08-15 12:19:15 +02:00
docs Various typo fixes 2016-05-07 20:40:28 +01:00
releng Import create_changelog.pl from qtsdk 2015-09-06 15:55:59 +02:00
services Remove PrivateTmp 2016-08-15 11:47:22 +02:00
src Fix potential tiny memory leak (#638) 2016-07-06 16:00:10 +02:00
test Fix moc include name 2016-01-16 18:59:46 +01:00
.commit-template Remove wiki reference from commit template 2014-08-10 01:40:39 +00:00
.gitignore Initial commit. 2013-01-18 00:46:14 +00:00
.mailmap Update mail map 2015-08-21 10:14:26 +02:00
.travis.yml Use Arch Linux with Travis CI (#667) 2016-08-15 12:34:42 +02:00
ChangeLog Remove the circles theme. 2016-05-04 00:07:10 +03:00
CMakeLists.txt Log systemd and journald features 2015-11-09 03:44:36 +01:00
CONTRIBUTORS Update contributors list 2015-08-21 10:15:58 +02:00
INSTALL.md Use Markdown for INSTALL 2015-10-31 05:10:55 +02:00
LICENSE Update license files 2016-05-04 20:28:58 +03:00
LICENSE.CC-BY-3.0 Update license files 2016-05-04 20:28:58 +03:00
README.md Embed "maui" into the resources 2016-05-04 00:04:17 +03:00

INTRODUCTION

Build Status IRC Network

SDDM is a modern display manager for X11 and Wayland aiming to be fast, simple and beautiful. It uses modern technologies like QtQuick, which in turn gives the designer the ability to create smooth, animated user interfaces.

SDDM is extremely themeable. We put no restrictions on the user interface design, it is completely up to the designer. We simply provide a few callbacks to the user interface which can be used for authentication, suspend etc.

To further ease theme creation we provide some premade components like a textbox, a combox etc.

There are a few sample themes distributed with SDDM. They can be used as a starting point for new themes.

SCREENSHOTS

sample screenshot

VIDEOS

RESOURCES

INSTALLATION

Qt >= 5.3.0 is required to use SDDM, although Qt >= 5.4.0 is recommended.

SDDM runs the greeter as a system user named "sddm" whose home directory needs to be set to /var/lib/sddm.

If pam and systemd are available, the greeter will go through logind which will give it access to drm devices.

Distributions without pam and systemd will need to put the "sddm" user into the "video" group, otherwise errors regarding GL and drm devices might be experienced.

LICENSE

Source code of SDDM is licensed under GNU GPL version 2 or later (at your choosing). QML files are MIT licensed and images are CC BY 3.0.

TROUBLESHOOTING

NVIDIA Prime

Add this at the bottom of the Xsetup script:

if [ -e /sbin/prime-offload ]; then
    echo running NVIDIA Prime setup /sbin/prime-offload, you will need to manually run /sbin/prime-switch to shut down
    /sbin/prime-offload
fi

No User Icon

SDDM reads user icon from either ~/.face.icon or FacesDir/username.face.icon

You need to make sure that SDDM user have permissions to read those files. In case you don't want to allow other users to access your $HOME you can use ACLs if your filesystem does support it.

setfacl -m u:sddm:x /home/username
setfacl -m u:sddm:r /home/username/.face.icon

Custom DPI

In order to set custom DPI for high resolution screens you should configure Xorg yourself. An easy way is to pass an additional argument to Xorg.

Edit /etc/sddm.conf, go to the X11 section and change ServerArguments like this:

ServerArguments="-nolisten tcp -dpi 192"

to set DPI to 192.

As an alternative you can edit Xorg configuration xorg.conf, please refer to the Xorg documentation.