Files
i3-dot/sway/scripts/lock-now
T
2026-09-21 19:05:35 +07:00

9 lines
236 B
Bash
Executable File

#!/bin/bash
wall_dir="${1:?wallpaper directory required}"
img=$(find "$wall_dir" -type f \( -iname "*.jpg" -o -iname "*.jpeg" -o -iname "*.png" \) | shuf -n1)
if [ -n "$img" ]; then
exec swaylock -i "$img"
else
exec swaylock
fi