master 0.9.23
Daniel Napora 2023-01-05 19:42:32 +01:00
parent 9ea2e57349
commit 997222b9ab
1 changed files with 7 additions and 5 deletions

View File

@ -157,11 +157,13 @@ if pgrep -af "conky.*mbcolor" >/dev/null; then
#array with all supported conkies #array with all supported conkies
for i in "$CONKYDIR"/*.con* "$CONKYDIR"/**/*.con*; do for i in "$CONKYDIR"/*.con* "$CONKYDIR"/**/*.con*; do
if [[ "$i" == *mbcolor* ]];then if [[ "$i" == *mbcolor* ]];then
supported+=("$i") supported+=("$i")
else else
unsupported+=("$i") if [[ "$i" != *"/*"* ]];then
fi unsupported+=("$i")
fi
fi
done done
#array with not started conkies #array with not started conkies