Adds a full motion system to the lock screen (staggered entrance, dot pop + caret, wrong-password shake, success flash, clock crossfade), depth polish (gradient veil, pill shadow + hairline border, "Enter password" hint, responsive typography), and a second wave of animations (idle breathing, success dot cascade, status slide-in, parallax unlock drift, animated checking ellipsis, opt-in Ken Burns wallpaper pan). Includes a dev-only breadlock-preview harness that renders every state to PNGs with no Wayland involved, and a design/sketch.html prototype. Fixes text alpha being dropped by cosmic-text's glyph-mask path (all text fades now work) and double-drifting that made the date/status overlap the clock/pill during unlock.
31 lines
1.1 KiB
TOML
31 lines
1.1 KiB
TOML
# breadgreet commonly runs as the dedicated `greeter` system user (per
|
|
# greetd's own convention), so it checks /etc/greetd/breadgreet.toml first;
|
|
# copy this there for a real install. For local dev/testing under a normal
|
|
# user session it falls back to ~/.config/breadgreet/breadgreet.toml.
|
|
#
|
|
# Every field is optional and defaults to the value shown here.
|
|
|
|
[background]
|
|
mode = "color"
|
|
path = ""
|
|
blur = false
|
|
# (Ken Burns is a breadlock-only background effect; not used by the greeter.)
|
|
ken_burns = false
|
|
|
|
[clock]
|
|
format = "%H:%M"
|
|
# strftime format for the date line under the clock; empty string hides it
|
|
date_format = "%A · %b %d"
|
|
|
|
[font]
|
|
family = "Varela Round"
|
|
|
|
[sessions]
|
|
# Directories scanned for .desktop session entries, in order.
|
|
wayland_dirs = ["/usr/share/wayland-sessions"]
|
|
xsessions_dirs = ["/usr/share/xsessions"]
|
|
# .desktop file stem (without extension) pre-selected in the picker.
|
|
# Falls back to the first entry found if this isn't present. BOS ships
|
|
# bos.desktop (Exec=bos-session); leaving this as "bos" is what the ISO
|
|
# config expects so Hyprland's own hyprland.desktop is not picked first.
|
|
default = "bos"
|