aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJa.KooLit <85185940+JaKooLit@users.noreply.github.com>2025-07-27 10:14:21 +0900
committerGitHub <noreply@github.com>2025-07-27 10:14:21 +0900
commit71be8d527dadb784d87c48786d78dc6d2a5c96ca (patch)
treec90c383d6c51170e253223063ffd8fc696353c14
parenta49b193e1bf7c89b8de95190456937335225001e (diff)
parente6d61ca717edce83aaefaceca9e76e30677e88ee (diff)
Merge pull request #779 from Mewlkor/fix-qs-alignment
fix: fix qs overview window alignment
-rw-r--r--[-rwxr-xr-x]config/hypr/scripts/sddm_wallpaper.sh0
-rw-r--r--config/quickshell/modules/overview/OverviewWidget.qml4
-rw-r--r--config/quickshell/modules/overview/OverviewWindow.qml4
3 files changed, 4 insertions, 4 deletions
diff --git a/config/hypr/scripts/sddm_wallpaper.sh b/config/hypr/scripts/sddm_wallpaper.sh
index a781156e..a781156e 100755..100644
--- a/config/hypr/scripts/sddm_wallpaper.sh
+++ b/config/hypr/scripts/sddm_wallpaper.sh
diff --git a/config/quickshell/modules/overview/OverviewWidget.qml b/config/quickshell/modules/overview/OverviewWidget.qml
index 2ea8d58a..22cf929e 100644
--- a/config/quickshell/modules/overview/OverviewWidget.qml
+++ b/config/quickshell/modules/overview/OverviewWidget.qml
@@ -258,8 +258,8 @@ Item {
repeat: false
running: false
onTriggered: {
- window.x = Math.max((windowData?.at[0] - monitorData?.reserved[0]) * root.scale, 0) + xOffset
- window.y = Math.max((windowData?.at[1] - monitorData?.reserved[1]) * root.scale, 0) + yOffset
+ window.x = Math.max((windowData?.at[0] - monitorData?.reserved[0] - monitorData?.x) * root.scale, 0) + xOffset
+ window.y = Math.max((windowData?.at[1] - monitorData?.reserved[1] - monitorData?.y) * root.scale, 0) + yOffset
}
}
diff --git a/config/quickshell/modules/overview/OverviewWindow.qml b/config/quickshell/modules/overview/OverviewWindow.qml
index 449a98c4..93ea06f9 100644
--- a/config/quickshell/modules/overview/OverviewWindow.qml
+++ b/config/quickshell/modules/overview/OverviewWindow.qml
@@ -18,8 +18,8 @@ Rectangle { // Window
property var availableWorkspaceWidth
property var availableWorkspaceHeight
property bool restrictToWorkspace: true
- property real initX: Math.max((windowData?.at[0] - monitorData?.reserved[0]) * root.scale, 0) + xOffset
- property real initY: Math.max((windowData?.at[1] - monitorData?.reserved[1]) * root.scale, 0) + yOffset
+ property real initX: Math.max((windowData?.at[0] - monitorData?.reserved[0] - monitorData?.x) * root.scale, 0) + xOffset
+ property real initY: Math.max((windowData?.at[1] - monitorData?.reserved[1] - monitorData?.y) * root.scale, 0) + yOffset
property real xOffset: 0
property real yOffset: 0
send patches to the email below
yukais@pinapelz.com
include the subject [PATCH repo_name]
pinapelz.com
homepage