mirror of
https://github.com/fscotto/infra.git
synced 2026-05-30 15:39:58 +00:00
- Use bg mode 'center' so the wallpaper keeps its native size. - Drop --clock and --indicator from the lockscreen invocation; those flags belong to swaylock-effects and made vanilla swaylock exit with an unknown-option error. Keep --indicator-idle-visible to preserve the ring while idle. - Replace the suspend-only swayidle line with a full idle policy: 5 min lock, 10 min DPMS off, DPMS on on resume, lock before sleep. Co-Authored-By: Claude Opus 4.7 <noreply@anthropic.com>
18 lines
466 B
Bash
Executable File
18 lines
466 B
Bash
Executable File
#!/bin/sh
|
|
|
|
exec swaylock \
|
|
--image "$HOME/.config/sway/wallpapers/wallpaper-161664.jpg" \
|
|
--scaling fill \
|
|
--indicator-idle-visible \
|
|
--ring-color 2f4058 \
|
|
--inside-color 1f1f28 \
|
|
--line-color 00000000 \
|
|
--separator-color 3a3a46 \
|
|
--key-hl-color 6daeea \
|
|
--bs-hl-color c7162b \
|
|
--ring-ver-color 4a90d9 \
|
|
--inside-ver-color 1f1f28 \
|
|
--ring-wrong-color c7162b \
|
|
--inside-wrong-color 1f1f28 \
|
|
--text-color d0d0d0
|