diff options
| author | Don Williams <Don.e.williams@gmail.com> | 2026-07-11 20:50:52 -0400 |
|---|---|---|
| committer | Pinapelz <yukais@pinapelz.com> | 2026-08-29 21:40:34 -0700 |
| commit | 9dab91abe13fc6cf1c8e609f71131609ae9c64bb (patch) | |
| tree | d848f7b3c180aba0ae1576d1f7ede0f951e63f11 /config/quickshell/overview-backup/quickshell-overview.qml | |
| parent | cfdf5b2c2c24d312b2f2ff3da8eb73f9dced8dcf (diff) | |
Using previous version of overview config seems to work better
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:
new file: overview-backup/README.md
renamed: overview/assets/Workspace_Wallpaper.png -> overview-backup/assets/Workspace_Wallpaper.png
new file: overview-backup/assets/image.png
new file: overview-backup/common/Appearance.qml
new file: overview-backup/common/Config.qml
new file: overview-backup/common/functions/ColorUtils.qml
new file: overview-backup/common/functions/qmldir
new file: overview-backup/common/qmldir
renamed: overview/common/widgets/RectangularShadow.qml -> overview-backup/common/widgets/RectangularShadow.qml
new file: overview-backup/common/widgets/StyledRectangularShadow.qml
new file: overview-backup/common/widgets/StyledText.qml
new file: overview-backup/common/widgets/StyledToolTip.qml
new file: overview-backup/common/widgets/StyledToolTipContent.qml
new file: overview-backup/common/widgets/qmldir
renamed: overview/config.example.json -> overview-backup/config.example.json
renamed: overview/config.json -> overview-backup/config.json
new file: overview-backup/modules/overview/Overview.qml
new file: overview-backup/modules/overview/OverviewWidget.qml
new file: overview-backup/modules/overview/OverviewWindow.qml
new file: overview-backup/modules/overview/qmldir
renamed: overview/quickshell-overview.qml -> overview-backup/quickshell-overview.qml
new file: overview-backup/services/GlobalStates.qml
new file: overview-backup/services/HyprlandData.qml
new file: overview-backup/services/qmldir
new file: overview-backup/shell.qml
modified: overview/README.md
modified: overview/assets/image.png
modified: overview/common/Appearance.qml
modified: overview/common/Config.qml
modified: overview/common/widgets/StyledRectangularShadow.qml
modified: overview/common/widgets/qmldir
modified: overview/modules/overview/Overview.qml
modified: overview/modules/overview/OverviewWidget.qml
modified: overview/modules/overview/OverviewWindow.qml
modified: overview/services/HyprlandData.qml
modified: overview/shell.qml
Diffstat (limited to 'config/quickshell/overview-backup/quickshell-overview.qml')
| -rw-r--r-- | config/quickshell/overview-backup/quickshell-overview.qml | 41 |
1 files changed, 41 insertions, 0 deletions
diff --git a/config/quickshell/overview-backup/quickshell-overview.qml b/config/quickshell/overview-backup/quickshell-overview.qml new file mode 100644 index 00000000..95176b4e --- /dev/null +++ b/config/quickshell/overview-backup/quickshell-overview.qml @@ -0,0 +1,41 @@ + +import QtQuick + +QtObject { + id: m3 + + property color m3primary: "{{colors.primary.default.hex}}" + property color m3onPrimary: "{{colors.on_primary.default.hex}}" + + property color m3primaryContainer: "{{colors.primary_container.default.hex}}" + property color m3onPrimaryContainer: "{{colors.on_primary_container.default.hex}}" + + property color m3secondary: "{{colors.secondary.default.hex}}" + property color m3onSecondary: "{{colors.on_secondary.default.hex}}" + + property color m3secondaryContainer: "{{colors.secondary_container.default.hex}}" + property color m3onSecondaryContainer: "{{colors.on_secondary_container.default.hex}}" + + property color m3background: "{{colors.background.default.hex}}" + property color m3onBackground: "{{colors.on_background.default.hex}}" + + property color m3surface: "{{colors.surface.default.hex}}" + + property color m3surfaceContainerLow: "{{colors.surface_container_low.default.hex}}" + property color m3surfaceContainer: "{{colors.surface_container.default.hex}}" + property color m3surfaceContainerHigh: "{{colors.surface_container_high.default.hex}}" + property color m3surfaceContainerHighest: "{{colors.surface_container_highest.default.hex}}" + + property color m3onSurface: "{{colors.on_surface.default.hex}}" + + property color m3surfaceVariant: "{{colors.surface_variant.default.hex}}" + property color m3onSurfaceVariant: "{{colors.on_surface_variant.default.hex}}" + + property color m3inverseSurface: "{{colors.inverse_surface.default.hex}}" + property color m3inverseOnSurface: "{{colors.inverse_on_surface.default.hex}}" + + property color m3outline: "{{colors.outline.default.hex}}" + property color m3outlineVariant: "{{colors.outline_variant.default.hex}}" + + property color m3shadow: "#000000" +} |
