Way to many changes, new start

This commit is contained in:
willifan 2024-04-01 15:24:03 +02:00
parent 63904bec07
commit a95d18c761
25 changed files with 1799 additions and 334 deletions

View file

@ -27,7 +27,6 @@ getIcon() {
desktop=$(getIcon "$1" "$2")
if [ -n "$desktop" ]; then
image=$(awk -F'[[:space:]]*=[[:space:]]*' '/Icon[[:space:]]*=/ && !seen[$2]++ {print $2; exit}' "$desktop")
icon="/usr/share/icons/Papirus-Dark/128x128/apps/${image}.svg"
echo -n "$icon"
icon=$(awk -F'[[:space:]]*=[[:space:]]*' '/Icon[[:space:]]*=/ && !seen[$2]++ {print $2; exit}' "$desktop")
echo -n "${icon}.svg"
fi