Files
homelab/dotfiles/quickshell/widgets/layout/VerticalStack.qml
darmanandClaude Sonnet 5 6e9d588f00 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>
2026-07-23 23:22:03 +02:00

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