diff --git a/modules/bar/Bar.qml b/modules/bar/Bar.qml index f5b9181..740dc6a 100644 --- a/modules/bar/Bar.qml +++ b/modules/bar/Bar.qml @@ -34,11 +34,10 @@ PanelWindow { RowLayout { id: rightLayout - spacing: 20 + spacing: 30 anchors.right: parent.right anchors.verticalCenter: parent.verticalCenter Volume {} - Battery {} PowerProfiles {} SystemTray { Layout.rightMargin: 30 diff --git a/modules/notifications/NotiPopup.qml b/modules/notifications/NotiPopup.qml index 203c6f1..ed1bcbb 100644 --- a/modules/notifications/NotiPopup.qml +++ b/modules/notifications/NotiPopup.qml @@ -96,14 +96,15 @@ WlrLayershell { // Use the image if available, otherwise hide this space? // Or you could use an icon fallback. source: notifyItem.modelData.image - anchors.verticalCenter: parent.verticalCenter // Hide if no image exists so text takes full width visible: notifyItem.modelData.image !== "" // Fixed size for consistency - width: 48 - height: 48 + sourceSize.width: 48 + sourceSize.height: 48 + Layout.preferredWidth: 48 + Layout.preferredHeight: 48 // Crop it nicely so it doesn't stretch fillMode: Image.PreserveAspectCrop diff --git a/modules/wallpaper/WallSwitcher.qml b/modules/wallpaper/WallSwitcher.qml index 5100e68..c19dad3 100644 --- a/modules/wallpaper/WallSwitcher.qml +++ b/modules/wallpaper/WallSwitcher.qml @@ -10,7 +10,7 @@ import qs FloatingWindow { id: root title: "quickshell-WallSwitcher" - visible: false + visible: true implicitWidth: 840 implicitHeight: 640 diff --git a/shell.qml b/shell.qml index e297ef3..176d2f9 100644 --- a/shell.qml +++ b/shell.qml @@ -29,4 +29,5 @@ ShellRoot { } } NotiPopup { } + }