config moved to c++ plugin, removed old qml + fileview implementation
This commit is contained in:
@@ -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();
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user