diff --git a/modules/wallpaper/:w b/modules/wallpaper/:w deleted file mode 100644 index 81b10af..0000000 --- a/modules/wallpaper/:w +++ /dev/null @@ -1,28 +0,0 @@ -import QtQuick -import QtQuick.Shapes -import Quickshell - -Item { - id: root - property var paddingWidth - property color paddingColor - Shape { - ShapePath { - id: leftPadding - fillColor: root.paddingColor - startX: root.paddingWidth - startY: root.paddingWidth - strokeWidth: root.paddingWidth * 2 - strokeColor: root.paddingColor - PathLine { - x: 0 + root.paddingWidth - y: 1200 - } - - PathLine { - relativeY: 0 - relativeX: 1900 - } - } - } -}