#!/bin/bash

# Define URLs and target filenames
declare -A files
files["phantomcatflavicon.png"]="favicon.png"
files["phantomcatflavicon.png"]="favicon.svg"
files["phantomcatsearx.png"]="searxng.png"
files["phantomcatsearx.svg"]="searxng.svg"


# Download and rename
for key in "${!files[@]}"; do
  wget "https://files.arrdnd.link/images/$key" -O "${files[$key]}"
done
