* lock: add fprint support * lock: better fprint detection * lock: cap error retries * nix: fix fprint pam for nix * lock: reset fprint tries * lock: minor pam fixes Delay fprint error retries Reset fprint error retries on lock * lock: loading indicator passwd state Instead of fprint state cause no way of detecting that * dashboard: better visualiser * lock: better fprint availability check * lock: better in/out anim Animating layout sizes is a bad idea :woe: Use scale instead * lock: add better error/fail messages * lock: less fprint icon states Already shown by message * lock: fix fprint reset * lock: include passwd pam * lock: flash message on change * lock: fix message anim Also wrap message instead of eliding * lock: better messages for no fprint
14 lines
335 B
QML
14 lines
335 B
QML
import Quickshell.Io
|
|
|
|
JsonObject {
|
|
property bool recolourLogo: false
|
|
property bool enableFprint: true
|
|
property int maxFprintTries: 3
|
|
property Sizes sizes: Sizes {}
|
|
|
|
component Sizes: JsonObject {
|
|
property real heightMult: 0.7
|
|
property real ratio: 16 / 9
|
|
property int centerWidth: 600
|
|
}
|
|
}
|