This commit is contained in:
end-4
2025-07-27 08:52:38 +07:00
parent 02f1c461c5
commit f7b46516b5
25 changed files with 3220 additions and 0 deletions
+24
View File
@@ -0,0 +1,24 @@
//@ pragma UseQApplication
//@ pragma Env QS_NO_RELOAD_POPUP=1
//@ pragma Env QT_QUICK_CONTROLS_STYLE=Basic
// Adjust this to make the shell smaller or larger
//@ pragma Env QT_SCALE_FACTOR=1
import QtQuick
import QtQuick.Window
import Quickshell
import qs.singletons
import "./modules/background/"
import "./modules/bar/"
ShellRoot {
// Some initialization
Component.onCompleted: {
MaterialThemeLoader.reapplyTheme()
}
Background {}
Bar {}
}