Slock

Slock, or the "Simple X display locker", is a display locker for X that aims to be minimal, fast, and lightweight..

Installation

Install the slock or slock-gitAUR package.

Configuration

Configuration is done by editing the config.h header file and then recompiling the package. After configuration you should create a package.

Usage

Simply run slock to lock the screen. You can also provide an argument to be run after the screen has been locked:

$ slock cmd [arg ...]

To unlock the screen, just type your password.

Tips and tricks

Lock on suspend

Create the following service which turns off the monitor and locks the screen.

/etc/systemd/system/slock@.service
[Unit]
Description=Lock X session using slock for user %i
Before=sleep.target

[Service]
User=%i
Environment=DISPLAY=:0
ExecStartPre=/usr/bin/xset dpms force suspend
ExecStart=/usr/bin/slock

[Install]
WantedBy=sleep.target

Enable the slock@user.service systemd unit for it to take effect for the username user.

Block VT switching and prevent killing X

slock recommends blocking VT switching so that the screen lock cannot be bypassed. For the same reason, slock recommends preventing users from killing the X server. See Xorg#Block TTY access and Xorg#Prevent a user from killing X.

gollark: Does /abandonallclaims abandon *all* claims?
gollark: Sounds 9006% non-bad to me!
gollark: What *could* go wrong?
gollark: What if you could only worldedit a useless random unclaimed patch of land into either air or dirt?
gollark: Free time here too. Still boring though.

See also

This article is issued from Archlinux. The text is licensed under Creative Commons - Attribution - Sharealike. Additional terms may apply for the media files.