panel window contains background styling

This commit is contained in:
Benjamin Palko 2025-09-07 12:45:54 -04:00
parent 4bda51f02c
commit ea86cc575d
5 changed files with 48 additions and 12 deletions

View file

@ -1,9 +1,41 @@
import qs.config
import QtQuick
import Quickshell
import Quickshell.Wayland
PanelWindow {
id: window
required property string name
WlrLayershell.namespace: `lux-${name}`
color: "transparent"
Rectangle {
anchors.fill: parent
radius: Styling.theme.radiusBox
Behavior on radius {
NumberAnimation {
duration: Styling.animations.speed.normal
}
}
color: Styling.theme.base100
Behavior on color {
ColorAnimation {
duration: Styling.animations.speed.fast
}
}
Behavior on opacity {
NumberAnimation {
duration: Styling.animations.speed.fast
}
}
border.width: 2
border.color: Styling.theme.base200
Behavior on border.color {
ColorAnimation {
duration: Styling.animations.speed.fast
}
}
}
}