Very basic theming support

This commit is contained in:
quadbyte 2025-08-09 12:53:10 -04:00
parent b08944988d
commit 821b4e8cad
6 changed files with 309 additions and 58 deletions

View file

@ -1,9 +1,10 @@
/*
Here we go, this is it. Rebuild time...
No spaghetti code, preset sizing, proper project structure
only "spawn" UI, do not do anything else here.
*/
import QtQuick
import Quickshell
import Quickshell.Io
@ -11,15 +12,13 @@ import Quickshell.Widgets
import qs.Modules.Bar
ShellRoot {
id: root
id: root
Variants {
model: Quickshell.screens
delegate: Bar {
modelData: item
}
Variants {
model: Quickshell.screens
delegate: Bar {
modelData: item
}
}
}