A minimal, beautiful screen locker for Wayland.
dewlock is a customizable screen locker for Wayland built for a minimal, beautiful experience.
It's a fork of swaywm/swaylock, but unlike its predecessor shows an input field while inputting a password.
Installation
Packaged releases
Packaged releases are available at Releases.
For Debian-based distributions:
curl -LO https://github.com/shikaan/dewlock/releases/latest/download/dewlock-amd64.deb sudo apt install ./dewlock-amd64.deb
Replace amd64 with arm64 on ARM systems.
From source
You can also build and install dewlock from source (see CONTRIBUTING for the required dependencies)
make all sudo make install
This procedure installs the executable, the man page, the shell completions,
and the PAM configuration file. All files go under /usr/local. To install
dewlock in a different directory, set the PREFIX variable:
make install PREFIX=~/.localIf you install dewlock without root permissions, this procedure does not install the PAM configuration file. See Authentication for more information.
Usage
Configuration lives in a single namespace.key=value file (by default
$XDG_CONFIG_HOME/dewlock/config). See dewlock(1) for
every option and configuration key.
Authentication
With PAM
On most systems, dewlock does not need a dedicated PAM configuration. It uses the PAM fallback service.
On some systems, dewlock needs a dedicated PAM configuration. Without it, dewlock can lock the screen and fail to unlock it.
The sudo make install command installs this configuration for you. If you
installed dewlock without root permissions, run this command:
Alternatively, copy the PAM config manually:
# from dewlock folder
sudo cp pam/dewlock /etc/pam.d/dewlockWithout PAM
On systems without PAM, dewlock uses shadow.h. To select this backend, set
AUTH_BACKEND at build time:
make AUTH_BACKEND=shadow all sudo make AUTH_BACKEND=shadow install
Systems with a tcb-like setup need no further action. This includes systems that use musl's native support or glibc with tcb.
On other systems, /etc/shadow stores the passwords for all users. dewlock
needs the setuid bit:
sudo chmod a+s /usr/local/bin/dewlock
If /etc/shadow belongs to the shadow group, use the setgid bit instead:
sudo chgrp shadow /usr/local/bin/dewlock sudo chmod g+s /usr/local/bin/dewlock
dewlock drops root permissions shortly after it starts.
Compatibility
dewlock runs on any Wayland compositor that implements the ext-session-lock-v1 protocol.
Contributing
To request a feature or report a bug, open an issue.
