mirror of
https://github.com/kossLAN/dots.git
synced 2025-11-04 22:49:50 -05:00
12 lines
250 B
QML
12 lines
250 B
QML
import Quickshell
|
|
|
|
Scope {
|
|
property string currentText: ""
|
|
property bool unlockInProgress: false
|
|
property bool showFailure: false
|
|
signal unlocked
|
|
signal failed
|
|
signal tryUnlock
|
|
|
|
onCurrentTextChanged: showFailure = false
|
|
}
|