progress update

This commit is contained in:
kossLAN 2025-07-16 19:34:36 -04:00
parent 41ccd5c460
commit e82ef6e0c1
Signed by: kossLAN
SSH key fingerprint: SHA256:bdV0x+wdQHGJ6LgmstH3KV8OpWY+OOFmJcPcB0wQPV8
7 changed files with 175 additions and 128 deletions

View file

@ -10,7 +10,7 @@ import ".."
PanelWindow {
id: root
color: ShellSettings.colors["surface"]
color: "transparent"
implicitHeight: ShellSettings.sizing.barHeight
property alias popup: popupWindow
@ -20,6 +20,12 @@ PanelWindow {
right: true
}
Rectangle {
color: ShellSettings.colors.surface
opacity: 0.15
anchors.fill: parent
}
// Popup window for all popups
Popup.MenuWindow {
id: popupWindow
@ -37,38 +43,32 @@ PanelWindow {
// Left side of bar
RowLayout {
spacing: 5
spacing: 15
Layout.fillWidth: true
Layout.fillHeight: true
HyprWorkspaces {
screen: root.screen
Layout.fillHeight: true
Layout.leftMargin: 4
}
// HyprWorkspaces {
// screen: root.screen
// Layout.fillHeight: true
// }
Widgets.Separator {
visible: activeWindow.visible
Layout.leftMargin: 5
Layout.rightMargin: 5
}
ActiveWindow {
id: activeWindow
Layout.preferredWidth: 400
}
// ActiveWindow {
// id: activeWindow
// Layout.preferredWidth: 400
// }
}
// Right side of bar
RowLayout {
spacing: 5
spacing: 10
Layout.fillWidth: true
Layout.fillHeight: true
Layout.alignment: Qt.AlignRight
SysTray.SysTray {
id: sysTray
popup: root.popup
// popup: root.popup
bar: root
Layout.fillHeight: true
}
@ -81,20 +81,20 @@ PanelWindow {
// Layout.bottomMargin: 2
// }
BatteryIndicator {
id: batteryIndicator
popup: root.popup
Layout.fillHeight: true
}
// BatteryIndicator {
// id: batteryIndicator
// popup: root.popup
// Layout.fillHeight: true
// }
Widgets.Separator {
Layout.leftMargin: 5
Layout.rightMargin: 5
}
// Widgets.Separator {
// Layout.leftMargin: 5
// Layout.rightMargin: 5
// }
Clock {
id: clock
color: ShellSettings.colors["inverse_surface"]
color: ShellSettings.colors["active"]
}
}
}