uhmmm some changed idek man fml

This commit is contained in:
lucy 2025-12-27 22:55:19 +01:00
parent 17151bd197
commit b63dc47f22
4 changed files with 7 additions and 6 deletions

View File

@ -34,11 +34,10 @@ PanelWindow {
RowLayout { RowLayout {
id: rightLayout id: rightLayout
spacing: 20 spacing: 30
anchors.right: parent.right anchors.right: parent.right
anchors.verticalCenter: parent.verticalCenter anchors.verticalCenter: parent.verticalCenter
Volume {} Volume {}
Battery {}
PowerProfiles {} PowerProfiles {}
SystemTray { SystemTray {
Layout.rightMargin: 30 Layout.rightMargin: 30

View File

@ -96,14 +96,15 @@ WlrLayershell {
// Use the image if available, otherwise hide this space? // Use the image if available, otherwise hide this space?
// Or you could use an icon fallback. // Or you could use an icon fallback.
source: notifyItem.modelData.image source: notifyItem.modelData.image
anchors.verticalCenter: parent.verticalCenter
// Hide if no image exists so text takes full width // Hide if no image exists so text takes full width
visible: notifyItem.modelData.image !== "" visible: notifyItem.modelData.image !== ""
// Fixed size for consistency // Fixed size for consistency
width: 48 sourceSize.width: 48
height: 48 sourceSize.height: 48
Layout.preferredWidth: 48
Layout.preferredHeight: 48
// Crop it nicely so it doesn't stretch // Crop it nicely so it doesn't stretch
fillMode: Image.PreserveAspectCrop fillMode: Image.PreserveAspectCrop

View File

@ -10,7 +10,7 @@ import qs
FloatingWindow { FloatingWindow {
id: root id: root
title: "quickshell-WallSwitcher" title: "quickshell-WallSwitcher"
visible: false visible: true
implicitWidth: 840 implicitWidth: 840
implicitHeight: 640 implicitHeight: 640

View File

@ -29,4 +29,5 @@ ShellRoot {
} }
} }
NotiPopup { } NotiPopup { }
} }