From 4e9fcca5c2be23609c4c9f84f5e308ffdc0abed2 Mon Sep 17 00:00:00 2001 From: vinceliuice Date: Fri, 4 Jul 2025 09:23:01 +0800 Subject: [PATCH] Fixed #194, Fixed #195 --- install.sh | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/install.sh b/install.sh index 878cd13b..60f96bfa 100755 --- a/install.sh +++ b/install.sh @@ -60,6 +60,10 @@ install() { notint_folder + if [[ "${scheme}" != '' || "${theme}" != '' ]]; then + sed -i "s/#60c0f0/${theme_color}/g" "${THEME_DIR}"/apps/scalable/*.svg + fi + cp -r "${SRC_DIR}"/links/* "${THEME_DIR}" fi @@ -139,7 +143,6 @@ notint_folder() { if [[ "${scheme}" != '' || "${theme}" != '' ]]; then cp -r "${SRC_DIR}"/notint/*.svg "${THEME_DIR}"/places/scalable sed -i "s/#60c0f0/${theme_color}/g" "${THEME_DIR}"/places/scalable/*.svg - sed -i "s/#60c0f0/${theme_color}/g" "${THEME_DIR}"/apps/scalable/*.svg fi }