This commit is contained in:
Vince 2021-05-13 09:58:01 +08:00
parent 5fbe71b1f0
commit 9968ebf737

View File

@ -368,10 +368,14 @@ install_themes() {
install_xfwmy "${color}" install_xfwmy "${color}"
for color in "${colors[@]}"; do 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+=("${!}") 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+=("${!}") process_ids+=("${!}")
done done
done done