From 51a8f1d5e17ce8146e9407558850d36226f9c14e Mon Sep 17 00:00:00 2001 From: zach Date: Sun, 17 May 2026 00:09:08 +0200 Subject: [PATCH] remove residue file --- Modules/DashWidget.qml | 31 ------------------------------- 1 file changed, 31 deletions(-) delete mode 100644 Modules/DashWidget.qml diff --git a/Modules/DashWidget.qml b/Modules/DashWidget.qml deleted file mode 100644 index db4c417..0000000 --- a/Modules/DashWidget.qml +++ /dev/null @@ -1,31 +0,0 @@ -import Quickshell -import QtQuick -import qs.Config -import qs.Helpers -import qs.Components - -CustomRect { - id: root - - required property PersistentProperties visibilities - - anchors.bottom: parent.bottom - anchors.bottomMargin: 6 - anchors.top: parent.top - anchors.topMargin: 6 - color: DynamicColors.tPalette.m3surfaceContainer - implicitWidth: 40 - radius: Appearance.rounding.full - - StateLayer { - onClicked: { - root.visibilities.dashboard = !root.visibilities.dashboard; - } - } - - MaterialIcon { - anchors.centerIn: parent - color: DynamicColors.palette.m3onSurface - text: "widgets" - } -}