back to TIL index

Swayidle Lockscreen

March 13, 2025 linux sway wayland desktop

Today I finally configured swayidle properly on my Sway setup. I wanted my computer to automatically lock, turn off displays and eventually suspend after periods of inactivity.

The Setup

First step was creating the swayidle configuration file at ~/.config/swayidle/config:

timeout 300 '~/.bin/lock'
timeout 600 'swaymsg "output * power off"' resume 'swaymsg "output * power on"'
timeout 600 'systemctl suspend-then-hibernate'
before-sleep '~/.bin/lock'
after-resume 'swaymsg "output * power on"'

This does the following:

Note: Timeouts count from when swayidle starts, even when chained

Sway Configuration

I added this line to my ~/.config/sway/config to make sure swayidle starts with Sway:

exec swayidle -w

The -w flag makes it wait for command to finish.

Lock Script

But the real magic happens in my ~/.bin/lock script, which creates a pretty screenshot-based lock screen:

#!/bin/bash
swaylock -f \
	--screenshots \
	--clock \
	--indicator \
	--indicator-radius 150 \
	--indicator-thickness 7 \
	--font-size 24 \
	--effect-blur 7x5 \
	--effect-vignette 0.5:0.5 \
	--ring-color 9ccfd8 \
	--ring-ver-color f6c177 \
	--ring-wrong-color eb6f92 \
	--key-hl-color eb6f92 \
	--line-color 00000000 \
	--inside-color 191724aa \
	--inside-ver-color 191724aa \
	--inside-wrong-color 191724aa \
	--separator-color 00000000 \
	--text-color e0def4 \
	--text-ver-color e0def4 \
	--text-wrong-color e0def4 \
	--text-caps-lock-color f6c177 \
	--grace 2 \
	--fade-in 0.2

This captures my screen, applies a blur and vignette effect, and shows a nice clock with a password indicator. The colors are from my Rose Pine theme.

Lock Screen Preview

Here’s how my lock screen looks with the blur and vignette effects:

Sway Lock Screen
My customized lock screen with blur effect and Rose Pine theme colors