Config was symlinked from ~/.dots/quickshell (separate dotfiles repo); now tracked here and applied via home-manager xdg.configFile. Co-Authored-By: Claude Sonnet 5 <noreply@anthropic.com>
25 lines
401 B
QML
25 lines
401 B
QML
import QtQuick
|
|
import QtQuick.Shapes
|
|
|
|
Item {
|
|
Shape {
|
|
id: shape
|
|
|
|
anchors.fill: parent
|
|
|
|
preferredRendererType: Shape.CurveRenderer
|
|
ShapePath {
|
|
strokeWidth: 4
|
|
strokeColor: "black"
|
|
|
|
startX: shape.width
|
|
startY: 0
|
|
|
|
PathLine {
|
|
x: 0
|
|
y: shape.height
|
|
}
|
|
}
|
|
}
|
|
}
|