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>
17 lines
266 B
QML
17 lines
266 B
QML
import QtQuick
|
|
import QtQuick.Layouts
|
|
|
|
ColumnLayout {
|
|
id: outerLayout
|
|
default property alias content: innerLayout.data
|
|
|
|
ColumnLayout {
|
|
id: innerLayout
|
|
spacing: outerLayout.spacing
|
|
}
|
|
|
|
Item {
|
|
Layout.fillHeight: true
|
|
}
|
|
}
|