Files
quickshell/launcher/PowermenuButton.qml
2025-11-28 14:08:53 +01:00

25 lines
338 B
QML

import Quickshell
import QtQuick
Rectangle {
implicitWidth: 100
implicitHeight: 50
property bool active: false
property string icon: "?"
color: active
? "#5b6078"
: "#494d64"
radius: 12
Text {
anchors.centerIn: parent
text: parent.icon
font.pointSize: 28
color: "#cad3f5"
}
}