aboutsummaryrefslogtreecommitdiffstats
path: root/config/quickshell/overview/common/widgets/RectangularShadow.qml
diff options
context:
space:
mode:
authorDon Williams <don.e.williams@gmail.com>2026-07-11 20:23:14 -0400
committerPinapelz <yukais@pinapelz.com>2026-08-29 21:40:34 -0700
commit0bd80939523b843fbdefb9b1eab7019c0dd19033 (patch)
tree80cda642dd7ac8a2ba4b58634978e26780b05ba2 /config/quickshell/overview/common/widgets/RectangularShadow.qml
parent9c37ca9f3a96d7d8a4bd921984f2f8013343a0ef (diff)
Fixed qs overview and qs-hyprview
Fixed lua bindings, layerrules and set overview to not show special workstations and show empty workspaces Signed-off-by: Don Williams <don.e.williams@gmail.com> On branch development Your branch is up to date with 'origin/development'. Changes to be committed: modified: config/quickshell/overview/common/Config.qml new file: config/quickshell/overview/common/widgets/RectangularShadow.qml modified: config/quickshell/overview/common/widgets/StyledRectangularShadow.qml modified: config/quickshell/overview/common/widgets/qmldir modified: config/quickshell/overview/config.example.json
Diffstat (limited to 'config/quickshell/overview/common/widgets/RectangularShadow.qml')
-rw-r--r--config/quickshell/overview/common/widgets/RectangularShadow.qml28
1 files changed, 28 insertions, 0 deletions
diff --git a/config/quickshell/overview/common/widgets/RectangularShadow.qml b/config/quickshell/overview/common/widgets/RectangularShadow.qml
new file mode 100644
index 00000000..2289d4c0
--- /dev/null
+++ b/config/quickshell/overview/common/widgets/RectangularShadow.qml
@@ -0,0 +1,28 @@
+import QtQuick
+import QtQuick.Effects
+
+Item {
+ id: root
+
+ property var target: parent
+ property real radius: 0
+ property real blur: 0
+ property vector2d offset: Qt.vector2d(0.0, 0.0)
+ property real spread: 0
+ property color color: "black"
+ property bool cached: false
+
+ anchors.fill: target
+ visible: target !== null
+
+ MultiEffect {
+ anchors.fill: target
+ source: target
+ shadowEnabled: true
+ shadowColor: root.color
+ shadowBlur: root.blur
+ shadowHorizontalOffset: root.offset.x
+ shadowVerticalOffset: root.offset.y
+ shadowOpacity: 1.0
+ }
+}
send patches to the email below
yukais@pinapelz.com
include the subject [PATCH repo_name]
pinapelz.com
homepage