diff options
| author | Don Williams <Don.e.williams@gmail.com> | 2026-07-04 17:28:36 -0400 |
|---|---|---|
| committer | Pinapelz <yukais@pinapelz.com> | 2026-08-29 21:39:35 -0700 |
| commit | e974676da74ca270b289f789ae055e3a9b4012fe (patch) | |
| tree | e43881adb8d2ab15b85d009e7ad85999d6f61416 /config/quickshell/overview-bak/common/widgets/StyledRectangularShadow.qml | |
| parent | 2f4b617fbb4214e50ae0bc44fd4acb5385731c75 (diff) | |
Updated quickshell overview to current version
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: CHANGELOG.md
new file: config/quickshell/overview-bak/README.md
new file: config/quickshell/overview-bak/assets/image.png
new file: config/quickshell/overview-bak/common/Appearance.qml
new file: config/quickshell/overview-bak/common/Config.qml
new file: config/quickshell/overview-bak/common/functions/ColorUtils.qml
new file: config/quickshell/overview-bak/common/functions/qmldir
new file: config/quickshell/overview-bak/common/qmldir
new file: config/quickshell/overview-bak/common/widgets/StyledRectangularShadow.qml
new file: config/quickshell/overview-bak/common/widgets/StyledText.qml
new file: config/quickshell/overview-bak/common/widgets/StyledToolTip.qml
new file: config/quickshell/overview-bak/common/widgets/StyledToolTipContent.qml
new file: config/quickshell/overview-bak/common/widgets/qmldir
new file: config/quickshell/overview-bak/modules/overview/Overview.qml
new file: config/quickshell/overview-bak/modules/overview/OverviewWidget.qml
new file: config/quickshell/overview-bak/modules/overview/OverviewWindow.qml
new file: config/quickshell/overview-bak/modules/overview/qmldir
new file: config/quickshell/overview-bak/services/GlobalStates.qml
new file: config/quickshell/overview-bak/services/HyprlandData.qml
new file: config/quickshell/overview-bak/services/qmldir
new file: config/quickshell/overview-bak/shell.qml
new file: config/quickshell/overview/.github/FUNDING.yml
modified: config/quickshell/overview/README.md
new file: config/quickshell/overview/assets/Workspace_Wallpaper.png
modified: config/quickshell/overview/assets/image.png
modified: config/quickshell/overview/common/Appearance.qml
modified: config/quickshell/overview/common/Config.qml
new file: config/quickshell/overview/config.example.json
modified: config/quickshell/overview/modules/overview/Overview.qml
modified: config/quickshell/overview/modules/overview/OverviewWidget.qml
modified: config/quickshell/overview/modules/overview/OverviewWindow.qml
new file: config/quickshell/overview/quickshell-overview.qml
modified: config/quickshell/overview/services/HyprlandData.qml
modified: config/quickshell/overview/shell.qml
Diffstat (limited to 'config/quickshell/overview-bak/common/widgets/StyledRectangularShadow.qml')
| -rw-r--r-- | config/quickshell/overview-bak/common/widgets/StyledRectangularShadow.qml | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/config/quickshell/overview-bak/common/widgets/StyledRectangularShadow.qml b/config/quickshell/overview-bak/common/widgets/StyledRectangularShadow.qml new file mode 100644 index 00000000..ccdff1ac --- /dev/null +++ b/config/quickshell/overview-bak/common/widgets/StyledRectangularShadow.qml @@ -0,0 +1,14 @@ +import QtQuick +import QtQuick.Effects +import ".." + +RectangularShadow { + required property var target + anchors.fill: target + radius: 20 + blur: 0.9 * Appearance.sizes.elevationMargin + offset: Qt.vector2d(0.0, 1.0) + spread: 1 + color: Appearance.colors.colShadow + cached: true +} |
