feat(quickshell): add basic shell.qml file

This commit is contained in:
matt1432 2025-04-26 19:01:40 -04:00
parent d5af1a5d74
commit 71bd402dfe

View file

@ -0,0 +1,32 @@
import Quickshell
import QtQuick
import "./Widgets/ScreenCorners"
import "./Config/Theme"
ShellRoot {
Theme {
id: theme
}
ScreenCorners {
}
PanelWindow {
color: theme.windowBg
height: 30
anchors {
bottom: true
left: true
right: true
}
Text {
anchors.centerIn: parent
color: theme.windowFg
text: "hello world"
}
}
}