diff --git a/.config/quickshell/ii/modules/lock/LockSurface.qml b/.config/quickshell/ii/modules/lock/LockSurface.qml index 62137adfa..14fcf4a6a 100644 --- a/.config/quickshell/ii/modules/lock/LockSurface.qml +++ b/.config/quickshell/ii/modules/lock/LockSurface.qml @@ -286,5 +286,21 @@ MouseArea { color: Appearance.colors.colOnSurfaceVariant } } + + ToolbarButton { + id: rebootButton + implicitWidth: height + + onClicked: Session.reboot() + + contentItem: MaterialSymbol { + anchors.centerIn: parent + horizontalAlignment: Text.AlignHCenter + verticalAlignment: Text.AlignVCenter + iconSize: 24 + text: "restart_alt" + color: Appearance.colors.colOnSurfaceVariant + } + } } }