From 9968ebf7373922b325aac7ff0642a3226ae585e1 Mon Sep 17 00:00:00 2001 From: Vince Date: Thu, 13 May 2021 09:58:01 +0800 Subject: [PATCH] update #234 --- lib-install.sh | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/lib-install.sh b/lib-install.sh index 58f0526d..b926a5e5 100755 --- a/lib-install.sh +++ b/lib-install.sh @@ -368,10 +368,14 @@ install_themes() { install_xfwmy "${color}" for color in "${colors[@]}"; do - gtk_base & install_theemy "${color}" "${opacity}" "${alt}" "${theme}" "${icon}" & + gtk_base "${color}" "${opacity}" "${theme}" & + process_ids+=("${!}") & + install_theemy "${color}" "${opacity}" "${alt}" "${theme}" "${icon}" & process_ids+=("${!}") - gtk_base & install_shelly "${color}" "${opacity}" "${alt}" "${theme}" "${icon}" & + gtk_base "${color}" "${opacity}" "${theme}" & + process_ids+=("${!}") & + install_shelly "${color}" "${opacity}" "${alt}" "${theme}" "${icon}" & process_ids+=("${!}") done done