1
0
mirror of https://github.com/AvengeMedia/DankMaterialShell.git synced 2026-01-26 14:32:52 -05:00

Add vesktop theme

This commit is contained in:
bbedward
2025-09-22 09:21:47 -04:00
parent 35f059b1dc
commit 6a963ed618
3 changed files with 107 additions and 1 deletions

View File

@@ -94,6 +94,11 @@ build_once() {
cat "$SHELL_DIR/matugen/configs/pywalfox.toml" >> "$TMP_CFG"
echo "" >> "$TMP_CFG"
fi
if command -v vesktop >/dev/null 2>&1 && [[ -d "$CONFIG_DIR/vesktop" ]]; then
cat "$SHELL_DIR/matugen/configs/vesktop.toml" >> "$TMP_CFG"
echo "" >> "$TMP_CFG"
fi
# GTK3 colors based on colloid
COLLOID_TEMPLATE="$SHELL_DIR/matugen/templates/gtk3-colors.css"
@@ -198,7 +203,6 @@ build_once() {
fi
}
# if pywalfox is installed and ~/.cache/wal/colors.json exists, run update
if command -v pywalfox >/dev/null 2>&1 && [[ -f "$HOME/.cache/wal/colors.json" ]]; then
pywalfox update >/dev/null 2>&1 || true
fi