config moved to c++ plugin, removed old qml + fileview implementation

This commit is contained in:
2026-08-13 02:25:26 +02:00
parent c29b91cd26
commit 3cd3209b28
341 changed files with 4851 additions and 3502 deletions
+6 -5
View File
@@ -4,8 +4,9 @@ import Quickshell
import QtQuick
import qs.Modules
import qs.Helpers
import qs.Config
import ZShell.Config
import qs.Paths
import qs.Services
Singleton {
id: root
@@ -55,10 +56,10 @@ Singleton {
}
if (isDarkTime) {
if (DynamicColors.light)
if (Colors.light)
root.applyDarkMode();
} else {
if (!DynamicColors.light)
if (!Colors.light)
root.applyLightMode();
}
}
@@ -86,10 +87,10 @@ Singleton {
}
if (isDarkTime) {
if (DynamicColors.light)
if (Colors.light)
root.applyDarkMode();
} else {
if (!DynamicColors.light)
if (!Colors.light)
root.applyLightMode();
}
}