terra: migrate quickshell config into repo, add quickshell + opencode packages
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>
This commit is contained in:
@@ -0,0 +1,7 @@
|
||||
import QtQuick
|
||||
|
||||
Rectangle {
|
||||
width: 10
|
||||
height: 10
|
||||
color: "red"
|
||||
}
|
||||
@@ -0,0 +1,24 @@
|
||||
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
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,43 @@
|
||||
import QtQuick
|
||||
import QtQuick.Shapes
|
||||
|
||||
Shape {
|
||||
preferredRendererType: Shape.CurveRenderer
|
||||
ShapePath {
|
||||
fillColor: "#FFD063"
|
||||
strokeWidth: 0
|
||||
|
||||
startX: 0
|
||||
startY: 0
|
||||
|
||||
PathLine {
|
||||
x: parent.width
|
||||
y: 0
|
||||
}
|
||||
|
||||
PathLine {
|
||||
x: parent.width - 15
|
||||
y: 38
|
||||
}
|
||||
|
||||
PathLine {
|
||||
x: parent.width - 15
|
||||
y: parent.height - 15
|
||||
}
|
||||
|
||||
PathLine {
|
||||
x: parent.width - 30
|
||||
y: parent.height
|
||||
}
|
||||
|
||||
PathLine {
|
||||
x: 0
|
||||
y: parent.height
|
||||
}
|
||||
|
||||
PathLine {
|
||||
x: 0
|
||||
y: 0
|
||||
}
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user