mirror of
https://github.com/AvengeMedia/DankMaterialShell.git
synced 2026-01-24 21:42:51 -05:00
* fix: Matugen relative paths The Problem All matugen config files (matugen/configs/*.toml) used relative paths like: input_path = './matugen/templates/gtk-colors.css' However, matugen was interpreting the relative paths ./matugen/templates/ as relative to its current execution context (which could be /tmp or another directory), not relative to $SHELL_DIR. This caused the "template doesn't exist" warnings and the "Failed to get input and output paths from hashmap" errors. The Fix Modified scripts/matugen-worker.sh to replace all relative template paths with absolute paths before passing them to matugen: `sed "s|input_path = '\./matugen/templates/|input_path = '$SHELL_DIR/matugen/templates/|g"` * matugen: leave user-templates as-is --------- Co-authored-by: bbedward <bbedward@gmail.com>