feat(quickshell): separate Bar from shell.qml

This commit is contained in:
matt1432 2025-04-27 18:11:50 -04:00
commit c1d7bcb2b6
4 changed files with 84 additions and 33 deletions
modules/quickshell/config

View file

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