1
0
mirror of https://github.com/AvengeMedia/DankMaterialShell.git synced 2025-12-11 07:52:50 -05:00

Flip light/dark mode and icon themes properly

This commit is contained in:
bbedward
2025-10-13 14:16:36 -04:00
parent 3bfdc6163c
commit 3c5a23799f
3 changed files with 19 additions and 17 deletions

View File

@@ -116,6 +116,16 @@ Singleton {
})
}
function setSystemIconTheme(themeName) {
if (!settingsPortalAvailable || !freedeskAvailable) return
DMSService.sendRequest("freedesktop.settings.setIconTheme", { iconTheme: themeName }, response => {
if (response.error) {
console.warn("PortalService: Failed to set icon theme:", response.error)
}
})
}
function setSystemProfileImage(imagePath) {
if (!accountsServiceAvailable || !freedeskAvailable) return