1
0
mirror of https://github.com/AvengeMedia/DankMaterialShell.git synced 2025-12-05 21:15:38 -05:00

fix incorrect path in the greeter module (#459)

This commit is contained in:
bokicoder
2025-10-16 20:20:05 +08:00
committed by GitHub
parent 13a188635d
commit 76dfcd0ccb

View File

@@ -114,12 +114,14 @@ in {
${lib.getExe pkgs.jq} '.wallpaperPath = "/var/lib/dmsgreeter/wallpaper.jpg"' session.orig.json > session.json ${lib.getExe pkgs.jq} '.wallpaperPath = "/var/lib/dmsgreeter/wallpaper.jpg"' session.orig.json > session.json
fi fi
fi fi
mv dms-colors.json colors.json || :
chown ${user}: * || : chown ${user}: * || :
''; '';
programs.dankMaterialShell.greeter.configFiles = lib.mkIf (cfg.configHome != null) [ programs.dankMaterialShell.greeter.configFiles = lib.mkIf (cfg.configHome != null) [
"${cfg.configHome}/.config/DankMaterialShell/settings.json" "${cfg.configHome}/.config/DankMaterialShell/settings.json"
"${cfg.configHome}/.local/state/DankMaterialShell/session.json" "${cfg.configHome}/.local/state/DankMaterialShell/session.json"
"${cfg.configHome}/.cache/quickshell/dankshell/dms-colors.json" "${cfg.configHome}/.cache/DankMaterialShell/dms-colors.json"
]; ];
}; };
} }