usable
This commit is contained in:
41
config/aurora-greeter/modules/Lock.qml
Normal file
41
config/aurora-greeter/modules/Lock.qml
Normal file
@@ -0,0 +1,41 @@
|
||||
import Quickshell // for PanelWindow
|
||||
import QtQuick // for Text
|
||||
import QtQuick.Shapes
|
||||
import QtQuick.Controls
|
||||
import QtQuick.Layouts
|
||||
import Quickshell.Io
|
||||
import Quickshell.Widgets
|
||||
import Quickshell.Wayland
|
||||
import Quickshell.Hyprland
|
||||
import Quickshell.Services.Greetd
|
||||
import Quickshell.Services.Pam
|
||||
|
||||
ClippingWrapperRectangle {
|
||||
|
||||
anchors.fill: parent
|
||||
radius: 10
|
||||
|
||||
color: Pywal.special.background
|
||||
|
||||
ColumnLayout {
|
||||
anchors.fill: parent
|
||||
Text {
|
||||
text: "User"
|
||||
}
|
||||
TextInput {
|
||||
text: "guest"
|
||||
}
|
||||
Text {
|
||||
text: "Password"
|
||||
}
|
||||
TextInput {
|
||||
text: "test"
|
||||
echoMode: TextInput.Password
|
||||
}
|
||||
|
||||
Button {
|
||||
text: "Login"
|
||||
|
||||
}
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user