1
0
mirror of https://github.com/AvengeMedia/DankMaterialShell.git synced 2026-01-24 13:32:50 -05:00

Set default instead of prefer-light

This commit is contained in:
bbedward
2025-10-03 08:39:02 -04:00
parent 0fac88e171
commit 4cb7a909f7

View File

@@ -75,7 +75,7 @@ Singleton {
return
}
const colorScheme = isLightMode ? "prefer-light" : "prefer-dark"
const colorScheme = isLightMode ? "default" : "prefer-dark"
const script = `gsettings set org.gnome.desktop.interface color-scheme '${colorScheme}'`
systemColorSchemeSetProcess.command = ["bash", "-c", script]