mirror of
https://github.com/fscotto/infra.git
synced 2026-05-30 15:39:58 +00:00
swaylock-effects is not packaged in Void; switch the lockscreen script to vanilla swaylock and drop the unsupported --effect-blur / --fade-in flags. Also correct the case-sensitive package name Waybar so xbps-install can resolve it. Co-Authored-By: Claude Opus 4.7 <noreply@anthropic.com>
19 lines
467 B
Bash
Executable File
19 lines
467 B
Bash
Executable File
#!/bin/sh
|
|
|
|
exec swaylock \
|
|
--image "$HOME/.config/sway/wallpapers/wallpaper-161664.jpg" \
|
|
--scaling fill \
|
|
--clock \
|
|
--indicator \
|
|
--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
|