Regenerated

This commit is contained in:
2026-04-11 20:23:36 +02:00
parent 9de9043fa9
commit 0686427abe
10 changed files with 365 additions and 438 deletions
@@ -1,5 +1,6 @@
// --- This file has been auto-generated. For permanent changes alter the appropriate block in the README.org. ---
// PowerMenu.qml
import "../"
import Quickshell
import Quickshell.Io
import QtQuick
@@ -25,9 +26,9 @@ ShellRoot {
Rectangle {
anchors.fill: parent
radius: 16
color: colors.base
color: Colors.base
border.width: 2
border.color: colors.blue
border.color: Colors.blue
ColumnLayout {
id: contentLayout
@@ -42,7 +43,7 @@ ShellRoot {
// Title
Text {
text: " Power Menu"
color: colors.teal
color: Colors.teal
font.pixelSize: 13
font.bold: true
Layout.bottomMargin: 8
@@ -64,7 +65,7 @@ ShellRoot {
Layout.fillWidth: true
height: 38
radius: 8
color: hovered ? colors.surface1 : "transparent"
color: hovered ? Colors.surface1 : "transparent"
property bool hovered: false
@@ -74,7 +75,7 @@ ShellRoot {
radius: parent.radius
color: "transparent"
border.width: item.hovered ? 2 : 0
border.color: colors.blue
border.color: Colors.blue
}
Text {
@@ -82,7 +83,7 @@ ShellRoot {
anchors.left: parent.left
anchors.leftMargin: 12
text: modelData.label
color: item.hovered ? colors.text : colors.subtext1
color: item.hovered ? Colors.text : Colors.subtext1
font.pixelSize: 13
}