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" - } -}