summaryrefslogtreecommitdiff
path: root/raveos-hyprland-theme/theme-data/dms/Widgets/DankBackdrop.qml
diff options
context:
space:
mode:
authorNippy <nippy@rp1.hu>2026-07-28 15:11:02 +0200
committerNippy <nippy@rp1.hu>2026-07-28 15:11:02 +0200
commit077a92c901cb4f31bdb47a1a19a73636be0b4a48 (patch)
treed86acead5a642dd4d2dde332c0733012b37079c4 /raveos-hyprland-theme/theme-data/dms/Widgets/DankBackdrop.qml
parent0bd16bd038538d879cbf21f3ef0731f06c3bfb24 (diff)
downloadRaveOS-PKGBUILD-077a92c901cb4f31bdb47a1a19a73636be0b4a48.tar.gz
RaveOS-PKGBUILD-077a92c901cb4f31bdb47a1a19a73636be0b4a48.zip
new settings
Diffstat (limited to 'raveos-hyprland-theme/theme-data/dms/Widgets/DankBackdrop.qml')
-rw-r--r--raveos-hyprland-theme/theme-data/dms/Widgets/DankBackdrop.qml64
1 files changed, 0 insertions, 64 deletions
diff --git a/raveos-hyprland-theme/theme-data/dms/Widgets/DankBackdrop.qml b/raveos-hyprland-theme/theme-data/dms/Widgets/DankBackdrop.qml
deleted file mode 100644
index 3db7c0c..0000000
--- a/raveos-hyprland-theme/theme-data/dms/Widgets/DankBackdrop.qml
+++ /dev/null
@@ -1,64 +0,0 @@
-import QtQuick
-import QtQuick.Effects
-import qs.Common
-
-Item {
- id: root
-
- anchors.fill: parent
-
- property string screenName: ""
- property bool isColorWallpaper: {
- var currentWallpaper = SessionData.getMonitorWallpaper(screenName)
- return currentWallpaper && currentWallpaper.startsWith("#")
- }
-
- Rectangle {
- anchors.fill: parent
- color: isColorWallpaper ? SessionData.getMonitorWallpaper(screenName) : Theme.background
- }
-
- Rectangle {
- x: parent.width * 0.7
- y: -parent.height * 0.3
- width: parent.width * 0.8
- height: parent.height * 1.5
- color: Qt.rgba(Theme.primary.r, Theme.primary.g, Theme.primary.b, 0.15)
- rotation: 35
- visible: !isColorWallpaper
- }
-
- Rectangle {
- x: parent.width * 0.85
- y: -parent.height * 0.2
- width: parent.width * 0.4
- height: parent.height * 1.2
- color: Qt.rgba(Theme.secondary.r, Theme.secondary.g, Theme.secondary.b, 0.12)
- rotation: 35
- visible: !isColorWallpaper
- }
-
- Image {
- anchors.left: parent.left
- anchors.bottom: parent.bottom
- anchors.leftMargin: Theme.spacingXL * 2
- anchors.bottomMargin: Theme.spacingXL * 2
- width: 200
- height: width * (569.94629 / 506.50931)
- fillMode: Image.PreserveAspectFit
- smooth: true
- mipmap: true
- asynchronous: true
- source: "file://" + Theme.shellDir + "/assets/danklogonormal.svg"
- opacity: 0.25
- visible: !isColorWallpaper
- layer.enabled: true
- layer.smooth: true
- layer.mipmap: true
- layer.effect: MultiEffect {
- saturation: 0
- colorization: 1
- colorizationColor: Theme.primary
- }
- }
-}