diff --git a/.github/ISSUE_TEMPLATE/_request_suggest.yml b/.github/ISSUE_TEMPLATE/_request_suggest.yml deleted file mode 100644 index ae15fa21..00000000 --- a/.github/ISSUE_TEMPLATE/_request_suggest.yml +++ /dev/null @@ -1,26 +0,0 @@ -name: "\U0001FA79 Requests & Suggestions" -description: Suggest an icon or request changes -labels: "\U0001FA79 Requests & Suggestions" -assignees: walkxcode -body: - - type: markdown - attributes: - value: "Thank you for your interest in contributing to our icon repository! To ensure that everything runs smoothly, we've set out some guidelines for contributors.\n## \U0001F31F Icon Specifications\n\n- Each icon should be in `PNG` format and have a height of exactly `512px`. Width does not matter. ❗️(No upscales! If the correct size cannot be found, a smaller height will be accepted.)\n\n- Each icon should include both a `PNG` and `SVG` version. If an `SVG` cannot be found, then only a `PNG` version is required.\n\n- Icons should be named after their full name, with spaces replaced by dashes. For example, \"Facebook Messenger\" should be named `facebook-messenger.png`.\n\n- Monochrome icons should default to a dark version. Light versions should be named `service-light.png`. If a light version is not available, use https://pinetools.com/colorize-image to change its color.\n\n- If an `SVG` is available for an icon, the `PNG` should be a conversion of that `SVG`. Use https://ezgif.com/svg-to-png to do this. Set the height to `512px` and leave the width empty.\n" - - type: textarea - id: icon-name - attributes: - label: Icon Name - description: What is the name of the icon you are contributing? - placeholder: Enter icon name here - validations: - required: true - - type: textarea - id: icons - attributes: - label: Icon(s) - description: >- - Upload your icons here. You can do this by Copy-Pasting or Drag & - Dropping the images. - placeholder: Copy-Paste or Drag & Drop images here! - validations: - required: false diff --git a/.github/ISSUE_TEMPLATE/request_suggest.yml b/.github/ISSUE_TEMPLATE/request_suggest.yml new file mode 100644 index 00000000..53386cf5 --- /dev/null +++ b/.github/ISSUE_TEMPLATE/request_suggest.yml @@ -0,0 +1,26 @@ +name: "\U0001FA79 Requests & Suggestions" +description: Suggest an icon or request changes +labels: "\U0001FA79 Requests & Suggestions" +assignees: walkxcode +body: + - type: markdown +attributes: + value: "Thank you for your interest in contributing to our icon repository! To ensure that everything runs smoothly, we've set out some guidelines for contributors.\n## 🌟 Icon Specifications\n\n- Each icon should include both a **PNG** and **SVG** version. If an **SVG** cannot be found, then only a **PNG** version is required.\n\n- Each icon should be in **PNG** format and have a height of exactly **512px**. Width does not matter. ❗️(No upscales! If the correct size cannot be found, a smaller height will be accepted.)\n\n- Icons should be named after their full name, using the [Kebab Case](https://wiki.c2.com/?KebabCase) naming convention. For example, \"Facebook Messenger\" should be named `facebook-messenger.png`.\n\n- Monochrome icons should default to a dark version. Light versions should be named `service-light.png`. If a light version is not available, use [https://pinetools.com/colorize-image](https://pinetools.com/colorize-image) to change its color.\n" + - type: textarea + id: icon-name + attributes: + label: Icon Name + description: What is the name of the icon you are contributing? + placeholder: Enter icon name here + validations: + required: true + - type: textarea + id: icons + attributes: + label: Icon(s) + description: >- + Upload your icons here. You can do this by Copy-Pasting or Drag & + Dropping the images. + placeholder: Copy-Paste or Drag & Drop images here! + validations: + required: false diff --git a/.github/workflows/_readme_generator.yml b/.github/workflows/_readme_generator.yml deleted file mode 100644 index c44d9a91..00000000 --- a/.github/workflows/_readme_generator.yml +++ /dev/null @@ -1,32 +0,0 @@ -name: 🚀 Generates ICONS - -on: - push: - workflow_dispatch: -jobs: - build: - runs-on: ubuntu-latest - - steps: - - name: Checkout - uses: actions/checkout@v3 - - - name: Setup Python - uses: actions/setup-python@v4 - with: - python-version: "3.9" - architecture: "x64" - - - name: ICONS Generator - run: |- - python _ci.py - cat ICONS.md - - - name: Load to GitHub - run: |- - git diff - git config --global user.email "noreply@walkx.fyi" - git config --global user.name "Dashboard Icons Bot" - git add -A - git commit -m "🚀 Generates ICONS" || exit 0 - git push diff --git a/.github/workflows/icons-page-generation.yml b/.github/workflows/icons-page-generation.yml new file mode 100644 index 00000000..84ac0cbe --- /dev/null +++ b/.github/workflows/icons-page-generation.yml @@ -0,0 +1,32 @@ +name: 🚀 Generates ICONS + +on: + push: + workflow_dispatch: +jobs: + build: + runs-on: ubuntu-latest + + steps: + - name: Checkout + uses: actions/checkout@v3 + + - name: Setup Python + uses: actions/setup-python@v4 + with: + python-version: "3.9" + architecture: "x64" + + - name: ICONS Generator + run: |- + python config/ci.py + cat ICONS.md + + - name: Load to GitHub + run: |- + git diff + git config --global user.email "noreply@walkx.fyi" + git config --global user.name "Dashboard Icons Bot" + git add -A + git commit -m ":rocket: Generates ICONS" || exit 0 + git push diff --git a/.github/workflows/png-compression.yml b/.github/workflows/png-compression.yml new file mode 100644 index 00000000..44daeded --- /dev/null +++ b/.github/workflows/png-compression.yml @@ -0,0 +1,31 @@ +name: 🗜️ PNG Compression + +on: + schedule: + - cron: '0 0 * * 0' + workflow_dispatch: + +jobs: + compress-images: + runs-on: ubuntu-latest + steps: + - name: Checkout code + uses: actions/checkout@v2 + - name: Install Dependencies + run: | + sudo apt-get update + sudo apt-get install -y zopfli + + - name: Compress PNGs + run: | + echo "🖼️ Compressing PNGs..." + find png/ -iname "*.png" -print0 | xargs -0 -P 4 -I{} sh -c 'echo "Compressing {}"; zopflipng -y {} {}' || true + + - name: Load to GitHub + run: |- + git diff + git config --global user.email "noreply@walkx.fyi" + git config --global user.name "Dashboard Icons Bot" + git add -A + git commit -m ":clamp: Compresses PNGs" || exit 0 + git push diff --git a/.github/workflows/svg-compression.yml b/.github/workflows/svg-compression.yml new file mode 100644 index 00000000..80592a97 --- /dev/null +++ b/.github/workflows/svg-compression.yml @@ -0,0 +1,31 @@ +name: 🗜️ SVG Compression + +on: + schedule: + - cron: '0 0 * * 0' + workflow_dispatch: + +jobs: + compress-images: + runs-on: ubuntu-latest + steps: + - name: Checkout code + uses: actions/checkout@v2 + - name: Install Dependencies + run: | + sudo apt-get update + sudo npm install -g svgo + + - name: Compress SVGs + run: | + echo "🎨 Compressing SVGs..." + find svg/ -iname "*.svg" -print0 | xargs -0 -P 4 -I{} sh -c 'echo "Compressing {}"; svgo --quiet --multipass {}' || true + + - name: Load to GitHub + run: |- + git diff + git config --global user.email "noreply@walkx.fyi" + git config --global user.name "Dashboard Icons Bot" + git add -A + git commit -m ":clamp: Compresses SVGs" || exit 0 + git push diff --git a/.imgbotconfig b/.imgbotconfig deleted file mode 100644 index b666677e..00000000 --- a/.imgbotconfig +++ /dev/null @@ -1,4 +0,0 @@ -{ - "schedule": "daily", - "prTitle" : "✨ Compresses Images", -} diff --git a/ICONS.md b/ICONS.md index a0f10b01..34a2c0d3 100644 --- a/ICONS.md +++ b/ICONS.md @@ -15,7 +15,7 @@

-3cx act actual adblock adguard-home adminer adsbexchange airsonic airtel alarmpi albertheijn alertmanager algovpn alltube alma alpine amazon-light amazon amcrest-cloud amcrest amd-light amd amp ampache amvd android-auto android-light android-robot android anonaddy ansible apache-cassandra apache-druid apache-openoffice apache-solr apache-subversion apache-tomcat apache apc appdaemon apple-alt apple apprise arch archisteamfarm archivebox archiveteamwarrior arduino arggocd ariang arm arris-light arris artifactory asana asrockrackipmi assetgrid asterisk asus-light asus-rog asus-router asus at-t atlassian-bamboo atlassian-confluence atlassian-jira atlassian-opsgenie atlassian-trello atlassian audacity audiobookshelf auracast authelia authentik-light authentik autobrr avmfritzbox aws-ecs aws awx axis azuracast azure-container-instances azure-container-service azure-dns azure babybuddy backblaze bacula badge baikal barcodebuddy baserow basilisk bastillion bazarr-light bazarr beef-light beef beets benotes betanin bible-gateway bibliogram biedronka bing birdnet bitcoin bithumen bitwarden blocky blogger blue-iris bluetooth bluewallet bobcat-miner booksonic bookstack bootstrap borg borgbackup boundary box brave-dev brave brewpi brillcam brocade brother browserless-light browserless browsh btcpay-server buddy budget-zero budibase-light budibase buffalo buxfer c cabot cacti caddy cadvisor calckey calibre-web calibre canonical cardigann-light cardigann carrefour castopod cc-light cc centos ceph cert-manager changedetection-io chatgpt checkmk cherry chevereto chiefonboarding chowdown chrome-beta chrome-canary chrome-dev chrome-devtools chrome-remote-desktop chrome chromecast-light chromecast chromium chronograf cilium cinny-light cinny cisco clash clashX closed-captioning-light closed-captioning cloud66 cloud9 cloudbeaver cloudcmd cloudflare-pages cloudflare-zero-trust cloudflare cockpit-cms-light cockpit-cms cockpit code-server code codeberg coder-light coder codestats-light codestats codex codimd-light codimd commafeed concourse contabo coredns coreos costco couchpotato cozy-cloud cozy cpanel cpp crater-invoice crazydomains cross-seed-square cross-seed crowdsec cryptomator cryptpad csharp css cups-light cups cura cyberchef d-link-wifi d-link dahua dart dashboard-icons dashdot dashy datadog dc-os dd-wrt-light dd-wrt ddns-updater debian deemix dell deluge deno-light deno devtooly-light devtooly diagrams-net dietpi digital-ocean dillinger directus discord discourse diskover dlna docker-amd docker-compose docker-gc docker-mailserver docker-moby docker dockstarter docspell dogpile dokuwiki dolibarr dolphin domainmod domoticz dopplertask double-take dovecot dozzle draw-io draw draytek drone droppy duckdns duckduckgo duo duplicacy duplicati ebay edge-dev edge edgeos-light edgeos elastic-beats elastic-kibana elastic-logstash elastic elasticsearch electron element emacs emby embystat emq-light emq emulatorjs epson-iprint ersatztv erste-george erste esphome espressif etcd etesync ethereum etherpad evebox eweka facebook-messenger facebook falcon-christmas falcon-player fastmail fedora-alt fedora feedly ferdi ferdium fermentrack ferretdb-white ferretdb filebot filebrowser fileflows filepizza filerun files filezilla fios-light fios firefly firefox-beta firefox-developer-edition firefox-lite firefox-nightly firefox-reality firefox-send firefox fireshare firewalla flame flathub flatpak flexget flightaware flightradar24 flogo flood fluffychat fluidd flux-cd focalboard foldingathome fontawesome forgejo foscam fossil foundry-vtt franz freedombox freeipa freenas-light freenas freenom freepbx freescout freshping freshrss frigate-light frigate fronius funkwhale fusionpbx gameyfin-light gameyfin gaps gatsby gatus gboard geckoview gentoo gerbera ghost-light ghost ghostfolio gigaset git gitea github-light github gitlab gladys-assistant glances glpi gluetun gmail go goaccess gogs gonic google-admin google-admob google-alerts google-analytics google-assistant google-calendar google-chat google-classroom google-cloud-platform google-cloud-print google-compute-engine google-contacts google-docs google-domains google-drive google-earth google-fi google-fit google-fonts google-forms google-home google-keep google-lens google-maps google-meet google-messages google-news google-one google-pay google-photos google-play-books google-play-games google-play google-podcasts google-scholar google-search-console google-sheets google-shopping google-sites google-slides google-street-view google-translate google-tv google-voice google-wallet google-wifi google gotify grafana grav-light grav graylog grist grocy guacamole-light guacamole hammond handbrake haproxy harbor hard-forum harvester hasura hatsh-light hatsh hdhomerun headphones healthchecks-v2 healthchecks heimdall-light heimdall helium-token hetzner hexo hikvision homarr home-assistant-alt home-assistant homebox homebridge homepage homer homeseer honeygain hoobs hoppscotch hotio hp html huawei hubitat huginn hugo humhub hydra hyperion icecast icinga idrac ihatemoney ilo immich influxdb infoblox insanelymac instagram inventree invidious invisioncommunity invoiceninja-light invoiceninja iobroker ionos-light ionos ipboard ipcamtalk ipfs irc iredmail ispconfig ispy it-tools-light it-tools jackett-light jackett jaeger jamstack java javascript jdownloader jdownloader2 jeedom jekyll jellyfin-vue jellyfin jellyseerr jelu jenkins jetbrains-fleet jetbrains-youtrack jio jira jitsi-meet jitsi joal joomla joplin julia jupyter kaizoku kamatera kapacitor kasm-workspaces kasm kaufland kavita keila kerberos keycloak kibana kimai kinto kitana kitchenowl kiwix-light kiwix ko-fi kodi koel koillection komga kopia kotlin krusader kubernetes-dashboard kubernetes kutt lanraragi lark lazylibrarian leanote leantime lemonldap-ng lets-encrypt libreddit librenms-light librenms libreoffice librephotos-light librephotos librespeed librex lidarr lidl lightning-terminal lighttpd linkace linkding linkedin linksys linode linux-mint linuxserver-io listmonk littlelink-custom lnbits logitech-gaming logitech-legacy-light logitech-legacy logitech-light logitech logstash loki longhorn lsio lua lychee mailcow mailcowsogo mailhog mailinabox mailu mak makemkv manjaro-linux mantisbt maptiler marginalia mariadb mastodon matomo matrix-light matrix-synapse-light matrix-synapse matrix mattermost mautic-light mautic mayan-edms mayan-light mcmyadmin mealie mediathekview mediawiki medusa mega-nz memos mempool meraki mercusys meshcentral meta metabase metube microbin microsoft-office microsoft-todo microsoft mikrotik minecraft mineos miniflux-light miniflux minimserver minio-light minio mkvtoolnix mobaxterm mobotix modrinth mojeek molecule monero mongodb monica monit moodle motioneye mpm mqtt mstream mullvad mumble musicbrainz mylar mysql n8n nagios navidrome ncore neko-light neko neocities netapp netboot netbox netcam-studio netdata netflix netgear netlify netmaker netsurf network-weathermap newsblur nextcloud-calendar nextcloud-cookbook nextcloud-deck nextcloud-news nextcloud-notes nextcloud-photos nextcloud-talk nextcloud-timemanager nextcloud nextdns nextjs nginx-proxy-manager nginx nitter nocodb node-red nodejs-alt nodejs nomad nomie notifiarr nowshowing ntfy-light ntfy ntop nxfilter nxlog nzbget nzbhydra nzbhydra2-light nzbhydra2 obico obitalk observium obsidian octoeverywhere octoprint oculus-light oculus office-365 olivetin omada ombi omnidb onedev-light onedev onlyoffice openai-light openai openeats openhab openmaptiles openmediavault openoffice openproject opensearch opensprinkler openstreetmap opensuse openvas openvpn openwrt opera-beta opera-developer opera-mini-beta opera-mini opera-neon opera-touch opera opnsense oracle-cloud oracle orange organizr oscarr-light oscarr osticket outline overclockers overseerr ovh ovirt owncloud ownphotos-light ownphotos pagerduty palemoon paperless-ng paperless papermerge partkeepr passwordpusher-light passwordpusher pastatool-light pastatool pastebin pastey paypal peertube petio pfsense pgadmin phantombot phoneinfoga-light phoneinfoga photonix-light photonix photoprism photostructure photoview php phpipam phpldapadmin phpmyadmin pi-alert pi-hole-unbound pi-hole pia piaware pigallery2-light pigallery2 pikvm-light pikvm pingdom pingvin pinry pinterest pioneer-light pioneer pirate-proxy pivpn piwigo pixelfed planka plausible pleroma plesk-light plesk plex-alt-light plex-alt plex plexdrive plexrequests plume podify podnapisi poly polywork portainer-alt portainer portus poste postgres powerdns powerpanel premium-mobile printer pritunl privacyidea private-internet-access privatebin projectsend prometheus proton-calendar proton-drive proton-mail proton-vpn prowlarr proxmox-light proxmox prtg psitransfer pterodactyl pufferpanel pushfish pushover putty pwndrop-light pwndrop pwpush-light pwpush pydio pyload python qbittorrent qdirstat qinglong qnap quant-ux questdb qutebrowser r rainloop-light rainloop rancher raneto raritan-light raritan raspberrymatic raspberrypi rathole rclone rdt-client readarr readthedocs-light readthedocs real-debrid realhosting recalbox recipesage reddit redis remotely requestrr resiliosync rhasspy-light rhasspy rhodecode riot rocketchat rocky-linux rompya rook roundcube router rpi-monitor rport rspamd rss-bridge rsshub rstudio rstudioserver ruby rundeck runeaudio runonflux rust rustdesk rutorrent sabnzbd-alt sabnzbd safari-ios safari sagemcom samsung-internet sandstorm scrutiny-light scrutiny scypted seafile searx-light searx searxng selfhosted-light selfhosted sendinblue sensu sentry seq servarr-light servarr serviio sftpgo shaarli shell-light shell-tips-light shell-tips shell shellhub shellngn shelly shinobi shiori shlink shoko sickbeard sickchill sickgear silverbullet simplelogin sinusbot siyuan skylink-fibernet skype slack smokeping snapchat snapdrop snibox snipe-it snippetbox sogo solid-invoice sonarqube sonarr soulseek sourcegraph spamassassin sparkleshare specter-desktop speedtest-tracker sphinx-doc sphinx-relay sphinx splunk spotify spotnet sqlitebrowser squeezebox-server squidex sshwifty startpage stash statping-ng statping stirling-pdf storj strapi streama substreamer supermicro swift swizzin symmetricom-light symmetricom sympa syncany synclounge-light synclounge syncthing synology-audio-station synology-calendar synology-chat synology-cloud-sync synology-contacts synology-document-viewer synology-download-station synology-drive-server synology-drive synology-dsm synology-file-station synology-mail-plus synology-mail-station synology-note-station synology-office synology-pdfviewer synology-photo-station synology-photos synology-surveillance-station synology-text-editor synology-video-station synology-webstation synology taiga tailscale-light tailscale tandoor tandoorrecipes tanoshi tar1090 taskcafe tasmoadmin tasmota-light tasmota tautulli tdarr teamcity technitium teedy telegraf telegram teleport tenda terminal terraform teslamate thanos the-pirate-bay the-proxy-bay theia-light theia thelounge themepark theodinproject thingsboard thunderbird thunderhub-light thunderhub tiktok-light tiktok timemachines-light timemachines timetagger-light timetagger tinypilot tinytinyrss tipi todoist tooljet tor tp-link traccar traefik traggo trakt trash-guides trilium trudesk truenas-core truenas-enterprise truenas-scale truenas tube-archivist-light tube-archivist tubesync turbopack-light turbopack tux tvheadend tvp-vod twitch twitter typescript typo3 ubiquiti-networks ubiquiti ubooquity ubuntu-alt ubuntu uc-browser udemy ultimate-guitar umami-analytics-light umami-analytics umami-light umami umbrel unifi-controller unifi-protect unifi universal-media-server unmanic unraid untangle updog ups upsnap uptime-kuma urbackup-server urbackup valetudo vault-light vaultwarden-light vaultwarden veeam vercel-light vercel verizon vi vikunja virgin-media virtualmin virtualradarserver viseron vivaldi vmware-esxi vmware-horizon vmware-vcenter vmware-workstation vmware voip-info voip-ms volumio voron vscode vultr vuplus wakapi wakatime-light wakatime wallabag wanikani ward watcher watchtower watchyourlan waze wazuh wbo web-whisper webdav webhook webhookd webkit webmin webtools webtop webtorrent webtrees wekan wetty wg-gen-web-light wg-gen-web wger whatsapp whisparr whooglesearch wikijs windows-10 windows-11 windows-7 windows-95 windows-98 windows-vista windows-xp wireguard wizarr wled woodpecker-ci-light woodpecker-ci wordpress workadventure xbackbone xcp-ng xen-orchestra xigmanas xmr xmrig xteve xwiki yacht-light yacht yahoo-mail yahoo yandex yarn-social ycombinator ymarks ynab your-spotify yourls youtube-kids youtube-music youtube youtubedl yts yunohost-light yunohost zabbix zabka zammad zendesk zerotier zigbee2mqtt zipline-light zipline znc zohomail zoneminder zulip zwavejs2mqtt +3cx act actual adblock adguard-home adminer adsbexchange airsonic airtel alarmpi albertheijn alertmanager algovpn alltube alma alpine amazon-light amazon amcrest-cloud amcrest amd-light amd amp ampache amvd android-auto android-light android-robot android anonaddy ansible apache-cassandra apache-druid apache-openoffice apache-solr apache-subversion apache-tomcat apache apc appdaemon apple-alt apple apprise arch archisteamfarm archivebox archiveteamwarrior arduino arggocd ariang arm arris-light arris artifactory asana asrockrackipmi assetgrid asterisk asus-light asus-rog asus-router asus at-t atlassian-bamboo atlassian-confluence atlassian-jira atlassian-opsgenie atlassian-trello atlassian audacity audiobookshelf auracast authelia authentik-light authentik autobrr avmfritzbox aws-ecs aws awx axis azuracast azure-container-instances azure-container-service azure-dns azure babybuddy backblaze bacula badge baikal barcodebuddy baserow basilisk bastillion bazarr-light bazarr beef-light beef beets benotes betanin bible-gateway bibliogram biedronka bing birdnet bitcoin bithumen bitwarden blocky blogger blue-iris bluetooth bluewallet bobcat-miner booksonic bookstack bootstrap borg borgbackup boundary box brave-dev brave brewpi brillcam brocade brother browserless-light browserless browsh btcpay-server buddy budget-zero budibase-light budibase buffalo buxfer c cabot cacti caddy cadvisor calckey calibre-web calibre canonical cardigann-light cardigann carrefour castopod cc-light cc centos ceph cert-manager changedetection-io chatgpt checkmk cherry chevereto chiefonboarding chowdown chrome-beta chrome-canary chrome-dev chrome-devtools chrome-remote-desktop chrome chromecast-light chromecast chromium chronograf cilium cinny-light cinny cisco clash clashX closed-captioning-light closed-captioning cloud66 cloud9 cloudbeaver cloudcmd cloudflare-pages cloudflare-zero-trust cloudflare cockpit-cms-light cockpit-cms cockpit code-server code codeberg coder-light coder codestats-light codestats codex codimd-light codimd commafeed concourse contabo coredns coreos costco couchpotato cozy-cloud cozy cpanel cpp crater-invoice crazydomains cross-seed-square cross-seed crowdsec cryptomator cryptpad csharp css cups-light cups cura cyberchef d-link-wifi d-link dahua dart dashboard-icons dashdot dashy datadog dc-os dd-wrt-light dd-wrt ddns-updater debian deemix dell deluge deno-light deno devtooly-light devtooly diagrams-net dietpi digital-ocean dillinger directus discord discourse diskover dlna docker-amd docker-compose docker-gc docker-mailserver docker-moby docker dockstarter docspell dogpile dokuwiki dolibarr dolphin domainmod domoticz dopplertask double-take dovecot dozzle draw-io draw draytek drone droppy duckdns duckduckgo duo duplicacy duplicati ebay edge-dev edge edgeos-light edgeos elastic-beats elastic-kibana elastic-logstash elastic elasticsearch electron element emacs emby embystat emq-light emq emulatorjs epson-iprint ersatztv erste-george erste esphome espressif etcd etesync ethereum etherpad evebox eweka facebook-messenger facebook falcon-christmas falcon-player fastmail fedora-alt fedora feedly ferdi ferdium fermentrack ferretdb-white ferretdb filebot filebrowser fileflows filepizza filerun files filezilla fios-light fios firefly firefox-beta firefox-developer-edition firefox-lite firefox-nightly firefox-reality firefox-send firefox fireshare firewalla flame flathub flatpak flexget flightaware flightradar24 flogo flood fluffychat fluidd flux-cd focalboard foldingathome fontawesome forgejo foscam fossil foundry-vtt franz freedombox freeipa freenas-light freenas freenom freepbx freescout freshping freshrss frigate-light frigate fronius funkwhale fusionpbx gameyfin-light gameyfin gaps gatsby gatus gboard geckoview gentoo gerbera ghost-light ghost ghostfolio gigaset git gitbook gitea github-light github gitlab gladys-assistant glances glpi gluetun gmail go goaccess gogs gonic google-admin google-admob google-alerts google-analytics google-assistant google-calendar google-chat google-classroom google-cloud-platform google-cloud-print google-compute-engine google-contacts google-docs google-domains google-drive google-earth google-fi google-fit google-fonts google-forms google-home google-keep google-lens google-maps google-meet google-messages google-news google-one google-pay google-photos google-play-books google-play-games google-play google-podcasts google-scholar google-search-console google-sheets google-shopping google-sites google-slides google-street-view google-translate google-tv google-voice google-wallet google-wifi google gotify grafana grav-light grav graylog grist grocy guacamole-light guacamole hammond handbrake haproxy harbor hard-forum harvester hasura hatsh-light hatsh hdhomerun headphones healthchecks-v2 healthchecks heimdall-light heimdall helium-token hetzner hexo hikvision homarr home-assistant-alt home-assistant homebox homebridge homepage homer homeseer honeygain hoobs hoppscotch hotio hp html huawei hubitat hugging-face huginn hugo humhub hydra hyperion icecast icinga idrac ihatemoney ilo immich influxdb infoblox insanelymac instagram inventree invidious invisioncommunity invoiceninja-light invoiceninja iobroker ionos-light ionos ipboard ipcamtalk ipfs irc iredmail ispconfig ispy it-tools-light it-tools jackett-light jackett jaeger jamstack java javascript jdownloader jdownloader2 jeedom jekyll jellyfin-vue jellyfin jellyseerr jelu jenkins jetbrains-fleet jetbrains-youtrack jio jira jitsi-meet jitsi joal joomla joplin julia jupyter kaizoku kamatera kapacitor kasm-workspaces kasm kaufland kavita keila kerberos keycloak kibana kimai kinto kitana kitchenowl kiwix-light kiwix ko-fi kodi koel koillection komga kopia kotlin krusader kubernetes-dashboard kubernetes kutt lanraragi lark lazylibrarian leanote leantime lemonldap-ng lets-encrypt libreddit librenms-light librenms libreoffice librephotos-light librephotos librespeed librex lidarr lidl lightning-terminal lighttpd linkace linkding linkedin linksys linode linux-mint linuxserver-io listmonk littlelink-custom lnbits logitech-gaming logitech-legacy-light logitech-legacy logitech-light logitech logstash loki longhorn lsio lua lychee mailcow mailcowsogo mailhog mailinabox mailu mak makemkv manjaro-linux mantisbt maptiler marginalia mariadb mastodon matomo matrix-light matrix-synapse-light matrix-synapse matrix mattermost mautic-light mautic mayan-edms mayan-light mcmyadmin mealie mediathekview mediawiki medusa mega-nz memos mempool meraki mercusys meshcentral meta metabase metube microbin microsoft-office microsoft-todo microsoft midjourney-light midjourney mikrotik minecraft mineos miniflux-light miniflux minimserver minio-light minio mkvtoolnix mobaxterm mobotix modrinth mojeek molecule monero mongodb monica monit moodle motioneye mpm mqtt mstream mullvad mumble musicbrainz mylar mysql n8n nagios navidrome ncore neko-light neko neocities netapp netboot netbox netcam-studio netdata netflix netgear netlify netmaker netsurf network-weathermap newsblur nextcloud-calendar nextcloud-cookbook nextcloud-deck nextcloud-news nextcloud-notes nextcloud-photos nextcloud-talk nextcloud-timemanager nextcloud nextdns nextjs nginx-proxy-manager nginx nitter nocodb node-red nodejs-alt nodejs nomad nomie notifiarr nowshowing ntfy-light ntfy ntop nxfilter nxlog nzbget nzbhydra nzbhydra2-light nzbhydra2 obico obitalk observium obsidian octoeverywhere octoprint oculus-light oculus office-365 olivetin omada ombi omnidb onedev-light onedev onlyoffice openai-light openai openeats openhab openmaptiles openmediavault openoffice openproject opensearch opensprinkler openstreetmap opensuse openvas openvpn openwrt opera-beta opera-developer opera-mini-beta opera-mini opera-neon opera-touch opera opnsense oracle-cloud oracle orange organizr oscarr-light oscarr osticket outline overclockers overseerr ovh ovirt owncloud ownphotos-light ownphotos pagerduty palemoon paperless-ng paperless papermerge partkeepr passwordpusher-light passwordpusher pastatool-light pastatool pastebin pastey paypal peertube petio pfsense pgadmin phantombot phoneinfoga-light phoneinfoga photonix-light photonix photoprism photostructure photoview php phpipam phpldapadmin phpmyadmin pi-alert pi-hole-unbound pi-hole pia piaware pigallery2-light pigallery2 pikvm-light pikvm pingdom pingvin pinry pinterest pioneer-light pioneer pirate-proxy pivpn piwigo pixelfed planka plausible pleroma plesk-light plesk plex-alt-light plex-alt plex plexdrive plexrequests plume podify podnapisi poly polywork portainer-alt portainer portus poste postgres powerdns powerpanel premium-mobile printer pritunl privacyidea private-internet-access privatebin projectsend prometheus proton-calendar proton-drive proton-mail proton-vpn prowlarr proxmox-light proxmox prtg psitransfer pterodactyl pufferpanel pushfish pushover putty pwndrop-light pwndrop pwpush-light pwpush pydio pyload python qbittorrent qdirstat qinglong qnap quant-ux questdb qutebrowser r rainloop-light rainloop rancher raneto raritan-light raritan raspberrymatic raspberrypi rathole rclone rdt-client readarr readthedocs-light readthedocs real-debrid realhosting recalbox recipesage reddit redis remotely requestrr resiliosync rhasspy-light rhasspy rhodecode riot rocketchat rocky-linux rompya rook roundcube router rpi-monitor rport rspamd rss-bridge rsshub rstudio rstudioserver ruby rundeck runeaudio runonflux rust rustdesk rutorrent sabnzbd-alt sabnzbd safari-ios safari sagemcom salad samsung-internet sandstorm scrutiny-light scrutiny scypted seafile searx-light searx searxng selfhosted-light selfhosted sendinblue sensu sentry seq servarr-light servarr serviio sftpgo shaarli shell-light shell-tips-light shell-tips shell shellhub shellngn shelly shinobi shiori shlink shoko sickbeard sickchill sickgear silverbullet simplelogin sinusbot siyuan skylink-fibernet skype slack slice smokeping snapchat snapdrop snibox snipe-it snippetbox sogo solid-invoice sonarqube sonarr soulseek sourcegraph spamassassin sparkleshare specter-desktop speedtest-tracker sphinx-doc sphinx-relay sphinx splunk spotify spotnet sqlitebrowser squeezebox-server squidex sshwifty startpage stash statping-ng statping stirling-pdf storj strapi streama substreamer supermicro swift swizzin symmetricom-light symmetricom sympa syncany synclounge-light synclounge syncthing synology-audio-station synology-calendar synology-chat synology-cloud-sync synology-contacts synology-document-viewer synology-download-station synology-drive-server synology-drive synology-dsm synology-file-station synology-mail-plus synology-mail-station synology-note-station synology-office synology-pdfviewer synology-photo-station synology-photos synology-surveillance-station synology-text-editor synology-video-station synology-webstation synology taiga tailscale-light tailscale tandoor tandoorrecipes tanoshi tar1090 taskcafe tasmoadmin tasmota-light tasmota tautulli tdarr teamcity technitium teedy telegraf telegram teleport tenda terminal terraform teslamate thanos the-pirate-bay the-proxy-bay theia-light theia thelounge themepark theodinproject thingsboard thunderbird thunderhub-light thunderhub tiktok-light tiktok timemachines-light timemachines timetagger-light timetagger tinypilot tinytinyrss tipi todoist tooljet tor tp-link traccar traefik traggo trakt trash-guides trilium trudesk truenas-core truenas-enterprise truenas-scale truenas tube-archivist-light tube-archivist tubesync turbopack-light turbopack tux tvheadend tvp-vod twitch twitter typescript typo3 ubiquiti-networks ubiquiti ubooquity ubuntu-alt ubuntu uc-browser udemy ultimate-guitar umami-analytics-light umami-analytics umami-light umami umbrel unifi-controller unifi-protect unifi universal-media-server unmanic unraid untangle updog ups upsnap uptime-kuma urbackup-server urbackup valetudo vault-light vaultwarden-light vaultwarden veeam vercel-light vercel verizon vi vikunja virgin-media virtualmin virtualradarserver viseron vivaldi vmware-esxi vmware-horizon vmware-vcenter vmware-workstation vmware voip-info voip-ms volumio voron vscode vultr vuplus wakapi wakatime-light wakatime wallabag wanikani ward watcher watchtower watchyourlan waze wazuh wbo web-whisper webdav webhook webhookd webkit webmin webtools webtop webtorrent webtrees wekan wetty wg-gen-web-light wg-gen-web wger whatsapp whisparr whooglesearch wikijs windows-10 windows-11 windows-7 windows-95 windows-98 windows-vista windows-xp wireguard wizarr wled woodpecker-ci-light woodpecker-ci wordpress workadventure xbackbone xcp-ng xen-orchestra xigmanas xmr xmrig xteve xwiki yacht-light yacht yahoo-mail yahoo yandex yarn-social ycombinator ymarks ynab your-spotify yourls youtube-kids youtube-music youtube youtubedl yts yunohost-light yunohost zabbix zabka zammad zendesk zerotier zigbee2mqtt zipline-light zipline znc zohomail zoneminder zulip zwavejs2mqtt
diff --git a/_TEMPLATE.md b/_TEMPLATE.md deleted file mode 100644 index 0f475cca..00000000 --- a/_TEMPLATE.md +++ /dev/null @@ -1,75 +0,0 @@ -

-

🟣 Dashboard Icons

-

- - JSdelivr weekly downloads badge - -

-

- 🚀 The best place to find icons for your dashboards. -
- 👀 See the icons🙌🏻 Donate -
-
-

-

- -# 📖 Table of Contents - -- [🚀 Getting Started](#-getting-started) - - [📊 Dashboards](#-dashboards) - - [🛠️ Installation](#️-installation) -- [🎨 Icons](#-icons) -- [🎉 Contributing Guidelines](#-contributing-guidelines) -- [📜 Legal](#-legal) - -## 🚀 Getting Started - -### 📊 Dashboards - -There are many Dashboards available that you can use with Dashboard Icons. Here are some of the popular ones. - -- [Homarr](https://github.com/ajnart/homarr)\* -- [Dashy](https://github.com/Lissy93/dashy)\* -- [Homer Dashboard](https://github.com/bastienwirtz/homer) -- [Heimdall](https://github.com/linuxserver/Heimdall) -- [Organizr(v2)](https://github.com/causefx/Organizr) -- [Flame](https://github.com/pawelmalak/flame) -- [SUI](https://github.com/jeroenpardon/sui) -- [Homepage](https://github.com/benphelps/homepage)\* - -**Note:** Dashboards with a \* have native integration with Dashboard Icons. - -### 🛠️ Installation - -**Tip!** You can access Dashboard Icons online, faster, by using `https://cdn.jsdelivr.net/gh/walkxcode/dashboard-icons/png/example.png`. Just replace `example` with the name of the icon! - -To download an icon, simply `Right click > Save image`. - -For non-desktop operating systems or people who prefer to use the terminal: - -```sh -$ curl https://raw.githubusercontent.com/walkxcode/dashboard-icons/master/png/example.png > example.png -``` - -or - -```sh -$ wget https://raw.githubusercontent.com/walkxcode/dashboard-icons/master/png/example.png -O example.png -``` - -## 🎨 Icons -
- Click to display all icons 👀 - - -
- -## 🎉 Contributing Guidelines -Please read the [Contributing Guidelines](CONTRIBUTING.md) before contributing to this project. - -## 📜 Legal - -(Almost) All product names, trademarks, and registered trademarks in the images in this repository are the property of their respective owners. All images in this repository are used by the users of the Dashboard Icons project for identification purposes only. - -The use of these names, trademarks, and brands appearing in these image files does not imply endorsement. diff --git a/_ICONS_TEMPLATE.md b/config/TEMPLATE.md similarity index 100% rename from _ICONS_TEMPLATE.md rename to config/TEMPLATE.md diff --git a/_banner.png b/config/banner.png similarity index 100% rename from _banner.png rename to config/banner.png diff --git a/_ci.py b/config/ci.py similarity index 79% rename from _ci.py rename to config/ci.py index d0efaa23..5573b01f 100644 --- a/_ci.py +++ b/config/ci.py @@ -2,8 +2,8 @@ import pathlib from pathlib import Path root = pathlib.Path(__file__).parent.resolve() -icons_template_path = root / "_ICONS_TEMPLATE.md" -icons_path = root / "ICONS.md" +template_path = root / "TEMPLATE.md" +path = root / "../ICONS.md" def generate_img_tag(file): @@ -15,7 +15,7 @@ img_tags = [generate_img_tag(x) for x in imgs] line_number = 0 # Read the template file -with open(icons_template_path, "r", encoding="UTF-8") as f: +with open(template_path, "r", encoding="UTF-8") as f: lines = f.readlines() # Find the line that starts with "" for line in lines: @@ -25,7 +25,7 @@ for line in lines: # Insert the icons after the line lines.insert(line_number + 1, " ".join(img_tags)) # Write the new file -with open(icons_path, "w", encoding="UTF-8") as f: +with open(path, "w", encoding="UTF-8") as f: f.write("".join(lines)) f.write("\n") print("Done!") diff --git a/_logo.png b/config/logo.png similarity index 100% rename from _logo.png rename to config/logo.png diff --git a/png/3cx.png b/png/3cx.png index db6a8e06..132c7a84 100644 Binary files a/png/3cx.png and b/png/3cx.png differ diff --git a/png/act.png b/png/act.png index 800976be..142238db 100644 Binary files a/png/act.png and b/png/act.png differ diff --git a/png/actual.png b/png/actual.png index 45c1ca6f..a3edc9de 100644 Binary files a/png/actual.png and b/png/actual.png differ diff --git a/png/adguard-home.png b/png/adguard-home.png index 6736a796..94da44ca 100644 Binary files a/png/adguard-home.png and b/png/adguard-home.png differ diff --git a/png/adsbexchange.png b/png/adsbexchange.png index f0416f71..2efa3ac5 100644 Binary files a/png/adsbexchange.png and b/png/adsbexchange.png differ diff --git a/png/airsonic.png b/png/airsonic.png index d98f321f..694b7e53 100644 Binary files a/png/airsonic.png and b/png/airsonic.png differ diff --git a/png/airtel.png b/png/airtel.png index bfd1d8e7..651c9cc4 100644 Binary files a/png/airtel.png and b/png/airtel.png differ diff --git a/png/alarmpi.png b/png/alarmpi.png index 34d6fe1b..53698476 100644 Binary files a/png/alarmpi.png and b/png/alarmpi.png differ diff --git a/png/albertheijn.png b/png/albertheijn.png index cc37d646..3bddc2ce 100644 Binary files a/png/albertheijn.png and b/png/albertheijn.png differ diff --git a/png/alertmanager.png b/png/alertmanager.png index 8ca7c9e3..c83eebda 100644 Binary files a/png/alertmanager.png and b/png/alertmanager.png differ diff --git a/png/algovpn.png b/png/algovpn.png index a185d883..1ecec279 100644 Binary files a/png/algovpn.png and b/png/algovpn.png differ diff --git a/png/alltube.png b/png/alltube.png index fd3a0305..b1f75bed 100644 Binary files a/png/alltube.png and b/png/alltube.png differ diff --git a/png/alma.png b/png/alma.png index 2972ad35..29a9c10a 100644 Binary files a/png/alma.png and b/png/alma.png differ diff --git a/png/alpine.png b/png/alpine.png index fe4b98cf..58c95fd7 100644 Binary files a/png/alpine.png and b/png/alpine.png differ diff --git a/png/amazon-light.png b/png/amazon-light.png index 95e1902a..18ec7a43 100644 Binary files a/png/amazon-light.png and b/png/amazon-light.png differ diff --git a/png/amazon.png b/png/amazon.png index 4bd6b078..59f96916 100644 Binary files a/png/amazon.png and b/png/amazon.png differ diff --git a/png/amcrest-cloud.png b/png/amcrest-cloud.png index 1584570a..03445368 100644 Binary files a/png/amcrest-cloud.png and b/png/amcrest-cloud.png differ diff --git a/png/amcrest.png b/png/amcrest.png index 23d0f10a..937ba959 100644 Binary files a/png/amcrest.png and b/png/amcrest.png differ diff --git a/png/amd-light.png b/png/amd-light.png index e12ca485..1c6640c6 100644 Binary files a/png/amd-light.png and b/png/amd-light.png differ diff --git a/png/amd.png b/png/amd.png index 3b06e4fd..d93aca30 100644 Binary files a/png/amd.png and b/png/amd.png differ diff --git a/png/ampache.png b/png/ampache.png index 7298103b..c3b5c32a 100644 Binary files a/png/ampache.png and b/png/ampache.png differ diff --git a/png/android-auto.png b/png/android-auto.png index 14d337ae..66d59b16 100644 Binary files a/png/android-auto.png and b/png/android-auto.png differ diff --git a/png/android-light.png b/png/android-light.png index 3b3c40cb..a9ddd082 100644 Binary files a/png/android-light.png and b/png/android-light.png differ diff --git a/png/android-robot.png b/png/android-robot.png index 33c4fd91..ff8d9baa 100644 Binary files a/png/android-robot.png and b/png/android-robot.png differ diff --git a/png/android.png b/png/android.png index a294573d..f5b28d95 100644 Binary files a/png/android.png and b/png/android.png differ diff --git a/png/anonaddy.png b/png/anonaddy.png index 9106dfde..a234051c 100644 Binary files a/png/anonaddy.png and b/png/anonaddy.png differ diff --git a/png/ansible.png b/png/ansible.png index 7f13a181..2125d4b3 100644 Binary files a/png/ansible.png and b/png/ansible.png differ diff --git a/png/apache-cassandra.png b/png/apache-cassandra.png index a2fc80e2..b9e3e0e7 100644 Binary files a/png/apache-cassandra.png and b/png/apache-cassandra.png differ diff --git a/png/apache-druid.png b/png/apache-druid.png index f4cfcf75..d55bdd55 100644 Binary files a/png/apache-druid.png and b/png/apache-druid.png differ diff --git a/png/apache-openoffice.png b/png/apache-openoffice.png index 44041cd8..f1b680e7 100644 Binary files a/png/apache-openoffice.png and b/png/apache-openoffice.png differ diff --git a/png/apache-solr.png b/png/apache-solr.png index d1f7af5c..f80bf6b7 100644 Binary files a/png/apache-solr.png and b/png/apache-solr.png differ diff --git a/png/apache-subversion.png b/png/apache-subversion.png index 447493eb..4ee2e4ea 100644 Binary files a/png/apache-subversion.png and b/png/apache-subversion.png differ diff --git a/png/apache-tomcat.png b/png/apache-tomcat.png index d4fe60b6..371b2d69 100644 Binary files a/png/apache-tomcat.png and b/png/apache-tomcat.png differ diff --git a/png/apache.png b/png/apache.png index 44d2c5d4..c92ec79c 100644 Binary files a/png/apache.png and b/png/apache.png differ diff --git a/png/apc.png b/png/apc.png index 4bbc15dd..b3b57ff7 100644 Binary files a/png/apc.png and b/png/apc.png differ diff --git a/png/apple-alt.png b/png/apple-alt.png index 0548145b..925d62d1 100644 Binary files a/png/apple-alt.png and b/png/apple-alt.png differ diff --git a/png/apple.png b/png/apple.png index 38499c99..357ae326 100644 Binary files a/png/apple.png and b/png/apple.png differ diff --git a/png/apprise.png b/png/apprise.png index bed9f109..9ce06e68 100644 Binary files a/png/apprise.png and b/png/apprise.png differ diff --git a/png/arch.png b/png/arch.png index f44a04f2..369d1c0a 100644 Binary files a/png/arch.png and b/png/arch.png differ diff --git a/png/archisteamfarm.png b/png/archisteamfarm.png index 13b98cc2..9fff4b0c 100644 Binary files a/png/archisteamfarm.png and b/png/archisteamfarm.png differ diff --git a/png/archivebox.png b/png/archivebox.png index 2b113783..039a67b9 100644 Binary files a/png/archivebox.png and b/png/archivebox.png differ diff --git a/png/archiveteamwarrior.png b/png/archiveteamwarrior.png index 843c10b9..5676471f 100644 Binary files a/png/archiveteamwarrior.png and b/png/archiveteamwarrior.png differ diff --git a/png/arduino.png b/png/arduino.png index 4a6aeffb..d5197437 100644 Binary files a/png/arduino.png and b/png/arduino.png differ diff --git a/png/arggocd.png b/png/arggocd.png index 6ea780d2..9ad30d3b 100644 Binary files a/png/arggocd.png and b/png/arggocd.png differ diff --git a/png/ariang.png b/png/ariang.png index 98dbc601..56ecb153 100644 Binary files a/png/ariang.png and b/png/ariang.png differ diff --git a/png/arm.png b/png/arm.png index f59bb182..faaf28b1 100644 Binary files a/png/arm.png and b/png/arm.png differ diff --git a/png/arris-light.png b/png/arris-light.png index 297b4670..561199f4 100644 Binary files a/png/arris-light.png and b/png/arris-light.png differ diff --git a/png/arris.png b/png/arris.png index a8e4983d..d08a9396 100644 Binary files a/png/arris.png and b/png/arris.png differ diff --git a/png/artifactory.png b/png/artifactory.png index 04c1a9f1..09c85885 100644 Binary files a/png/artifactory.png and b/png/artifactory.png differ diff --git a/png/asana.png b/png/asana.png index 0ccf16fa..2e285cad 100644 Binary files a/png/asana.png and b/png/asana.png differ diff --git a/png/asrockrackipmi.png b/png/asrockrackipmi.png index df8d2eb1..b0210633 100644 Binary files a/png/asrockrackipmi.png and b/png/asrockrackipmi.png differ diff --git a/png/asterisk.png b/png/asterisk.png index b6c69efa..16344f23 100644 Binary files a/png/asterisk.png and b/png/asterisk.png differ diff --git a/png/asus-light.png b/png/asus-light.png index bb4766b1..9b8d471b 100644 Binary files a/png/asus-light.png and b/png/asus-light.png differ diff --git a/png/asus-rog.png b/png/asus-rog.png index 1daf447f..b89c170d 100644 Binary files a/png/asus-rog.png and b/png/asus-rog.png differ diff --git a/png/asus-router.png b/png/asus-router.png index cc93268e..e63d9912 100644 Binary files a/png/asus-router.png and b/png/asus-router.png differ diff --git a/png/asus.png b/png/asus.png index 47ef2ee6..4acd355d 100644 Binary files a/png/asus.png and b/png/asus.png differ diff --git a/png/at-t.png b/png/at-t.png index b1c08d3b..d104deed 100644 Binary files a/png/at-t.png and b/png/at-t.png differ diff --git a/png/atlassian-bamboo.png b/png/atlassian-bamboo.png index 3a1c093d..2f05eea0 100644 Binary files a/png/atlassian-bamboo.png and b/png/atlassian-bamboo.png differ diff --git a/png/atlassian-confluence.png b/png/atlassian-confluence.png index 330e9a69..1211380c 100644 Binary files a/png/atlassian-confluence.png and b/png/atlassian-confluence.png differ diff --git a/png/atlassian-jira.png b/png/atlassian-jira.png index 3a1e3ba8..df8bfc2c 100644 Binary files a/png/atlassian-jira.png and b/png/atlassian-jira.png differ diff --git a/png/atlassian-opsgenie.png b/png/atlassian-opsgenie.png index bb894d55..9fdccdcd 100644 Binary files a/png/atlassian-opsgenie.png and b/png/atlassian-opsgenie.png differ diff --git a/png/atlassian-trello.png b/png/atlassian-trello.png index 090cea62..c32dc789 100644 Binary files a/png/atlassian-trello.png and b/png/atlassian-trello.png differ diff --git a/png/atlassian.png b/png/atlassian.png index 9c1f79f9..464c27ce 100644 Binary files a/png/atlassian.png and b/png/atlassian.png differ diff --git a/png/audacity.png b/png/audacity.png index 51bbcd5d..483b3bc9 100644 Binary files a/png/audacity.png and b/png/audacity.png differ diff --git a/png/audiobookshelf.png b/png/audiobookshelf.png index fea5df02..932713c6 100644 Binary files a/png/audiobookshelf.png and b/png/audiobookshelf.png differ diff --git a/png/auracast.png b/png/auracast.png index 71db5406..adf1314a 100644 Binary files a/png/auracast.png and b/png/auracast.png differ diff --git a/png/authelia.png b/png/authelia.png index 7074fa44..b5db391f 100644 Binary files a/png/authelia.png and b/png/authelia.png differ diff --git a/png/authentik-light.png b/png/authentik-light.png index 861c232e..73299972 100644 Binary files a/png/authentik-light.png and b/png/authentik-light.png differ diff --git a/png/authentik.png b/png/authentik.png index 4658d117..0b82f311 100644 Binary files a/png/authentik.png and b/png/authentik.png differ diff --git a/png/autobrr.png b/png/autobrr.png index 79199d15..83f02d38 100644 Binary files a/png/autobrr.png and b/png/autobrr.png differ diff --git a/png/avmfritzbox.png b/png/avmfritzbox.png index 1486ca1d..8bc6b586 100644 Binary files a/png/avmfritzbox.png and b/png/avmfritzbox.png differ diff --git a/png/aws-ecs.png b/png/aws-ecs.png index d2c4c439..c88d3253 100644 Binary files a/png/aws-ecs.png and b/png/aws-ecs.png differ diff --git a/png/aws.png b/png/aws.png index f5d57a9e..064471e9 100644 Binary files a/png/aws.png and b/png/aws.png differ diff --git a/png/awx.png b/png/awx.png index 1d73edad..62ce4391 100644 Binary files a/png/awx.png and b/png/awx.png differ diff --git a/png/axis.png b/png/axis.png index 36f8c7b7..89758bf6 100644 Binary files a/png/axis.png and b/png/axis.png differ diff --git a/png/azuracast.png b/png/azuracast.png index 9dda7978..a9e3c9ff 100644 Binary files a/png/azuracast.png and b/png/azuracast.png differ diff --git a/png/azure-container-instances.png b/png/azure-container-instances.png index 7e2b1f0b..2648a3b8 100644 Binary files a/png/azure-container-instances.png and b/png/azure-container-instances.png differ diff --git a/png/azure-container-service.png b/png/azure-container-service.png index fb339c8b..6be892b3 100644 Binary files a/png/azure-container-service.png and b/png/azure-container-service.png differ diff --git a/png/azure-dns.png b/png/azure-dns.png index 29435d70..ec370514 100644 Binary files a/png/azure-dns.png and b/png/azure-dns.png differ diff --git a/png/azure.png b/png/azure.png index 052d016d..7efce5de 100644 Binary files a/png/azure.png and b/png/azure.png differ diff --git a/png/babybuddy.png b/png/babybuddy.png index b4972268..25189090 100644 Binary files a/png/babybuddy.png and b/png/babybuddy.png differ diff --git a/png/backblaze.png b/png/backblaze.png index dc52e019..c893bc47 100644 Binary files a/png/backblaze.png and b/png/backblaze.png differ diff --git a/png/bacula.png b/png/bacula.png index 7bc766ef..cb644846 100644 Binary files a/png/bacula.png and b/png/bacula.png differ diff --git a/png/badge.png b/png/badge.png index ada5e19c..287c5ff2 100644 Binary files a/png/badge.png and b/png/badge.png differ diff --git a/png/barcodebuddy.png b/png/barcodebuddy.png index c2f43948..3bb572bf 100644 Binary files a/png/barcodebuddy.png and b/png/barcodebuddy.png differ diff --git a/png/baserow.png b/png/baserow.png index d0f147eb..2b7a8000 100644 Binary files a/png/baserow.png and b/png/baserow.png differ diff --git a/png/bazarr-light.png b/png/bazarr-light.png index f1cecc8e..28ef313d 100644 Binary files a/png/bazarr-light.png and b/png/bazarr-light.png differ diff --git a/png/bazarr.png b/png/bazarr.png index d8c488af..e00ba3b5 100644 Binary files a/png/bazarr.png and b/png/bazarr.png differ diff --git a/png/beef-light.png b/png/beef-light.png index 39db5287..cc64992e 100644 Binary files a/png/beef-light.png and b/png/beef-light.png differ diff --git a/png/beef.png b/png/beef.png index 22810db3..1e161ef6 100644 Binary files a/png/beef.png and b/png/beef.png differ diff --git a/png/beets.png b/png/beets.png index eaec5bb7..08194e09 100644 Binary files a/png/beets.png and b/png/beets.png differ diff --git a/png/benotes.png b/png/benotes.png index f932d8c5..9212ce7e 100644 Binary files a/png/benotes.png and b/png/benotes.png differ diff --git a/png/betanin.png b/png/betanin.png index f39b48c5..fd90115b 100644 Binary files a/png/betanin.png and b/png/betanin.png differ diff --git a/png/bible-gateway.png b/png/bible-gateway.png index 65f39115..0cb9770d 100644 Binary files a/png/bible-gateway.png and b/png/bible-gateway.png differ diff --git a/png/bibliogram.png b/png/bibliogram.png index b249bdbc..174ee102 100644 Binary files a/png/bibliogram.png and b/png/bibliogram.png differ diff --git a/png/biedronka.png b/png/biedronka.png index 9be1d4f9..946e632e 100644 Binary files a/png/biedronka.png and b/png/biedronka.png differ diff --git a/png/bing.png b/png/bing.png index b9f6c4a5..3140e1ac 100644 Binary files a/png/bing.png and b/png/bing.png differ diff --git a/png/birdnet.png b/png/birdnet.png index c6eb7666..f5d83ba9 100644 Binary files a/png/birdnet.png and b/png/birdnet.png differ diff --git a/png/bitcoin.png b/png/bitcoin.png index 402e89df..1b0cb09b 100644 Binary files a/png/bitcoin.png and b/png/bitcoin.png differ diff --git a/png/bithumen.png b/png/bithumen.png index c05066a4..26678e2a 100644 Binary files a/png/bithumen.png and b/png/bithumen.png differ diff --git a/png/bitwarden.png b/png/bitwarden.png index 7e29ffed..5cb9c929 100644 Binary files a/png/bitwarden.png and b/png/bitwarden.png differ diff --git a/png/blocky.png b/png/blocky.png index e3555bed..09275f4b 100644 Binary files a/png/blocky.png and b/png/blocky.png differ diff --git a/png/blogger.png b/png/blogger.png index 96ae79b5..86e07daa 100644 Binary files a/png/blogger.png and b/png/blogger.png differ diff --git a/png/blue-iris.png b/png/blue-iris.png index 4210eb60..bc953f01 100644 Binary files a/png/blue-iris.png and b/png/blue-iris.png differ diff --git a/png/bluetooth.png b/png/bluetooth.png index 37e50489..c99d1e74 100644 Binary files a/png/bluetooth.png and b/png/bluetooth.png differ diff --git a/png/bluewallet.png b/png/bluewallet.png index ec541528..45b5df61 100644 Binary files a/png/bluewallet.png and b/png/bluewallet.png differ diff --git a/png/bobcat-miner.png b/png/bobcat-miner.png index 72eed639..f4e832b6 100644 Binary files a/png/bobcat-miner.png and b/png/bobcat-miner.png differ diff --git a/png/bookstack.png b/png/bookstack.png index 4d4c19b0..26106551 100644 Binary files a/png/bookstack.png and b/png/bookstack.png differ diff --git a/png/bootstrap.png b/png/bootstrap.png index 96504a89..3145a088 100644 Binary files a/png/bootstrap.png and b/png/bootstrap.png differ diff --git a/png/borg.png b/png/borg.png index 1fcd1794..f7e146b7 100644 Binary files a/png/borg.png and b/png/borg.png differ diff --git a/png/borgbackup.png b/png/borgbackup.png index 1fcd1794..f7e146b7 100644 Binary files a/png/borgbackup.png and b/png/borgbackup.png differ diff --git a/png/boundary.png b/png/boundary.png index d8fff06e..501d167b 100644 Binary files a/png/boundary.png and b/png/boundary.png differ diff --git a/png/brave-dev.png b/png/brave-dev.png index 43925147..612cd8d3 100644 Binary files a/png/brave-dev.png and b/png/brave-dev.png differ diff --git a/png/brave.png b/png/brave.png index 100e5cab..790a371b 100644 Binary files a/png/brave.png and b/png/brave.png differ diff --git a/png/brewpi.png b/png/brewpi.png index 124f1c20..d90c47c9 100644 Binary files a/png/brewpi.png and b/png/brewpi.png differ diff --git a/png/brillcam.png b/png/brillcam.png index 5c0f4580..0768af4a 100644 Binary files a/png/brillcam.png and b/png/brillcam.png differ diff --git a/png/brocade.png b/png/brocade.png index 88ab7f61..c8cb6d08 100644 Binary files a/png/brocade.png and b/png/brocade.png differ diff --git a/png/brother.png b/png/brother.png index 5f7efa96..76f97cd2 100644 Binary files a/png/brother.png and b/png/brother.png differ diff --git a/png/browserless-light.png b/png/browserless-light.png index bd5ce7b4..f93632dd 100644 Binary files a/png/browserless-light.png and b/png/browserless-light.png differ diff --git a/png/browserless.png b/png/browserless.png index 875e4598..2ba6c7a0 100644 Binary files a/png/browserless.png and b/png/browserless.png differ diff --git a/png/browsh.png b/png/browsh.png index b337d9ac..a95a80c5 100644 Binary files a/png/browsh.png and b/png/browsh.png differ diff --git a/png/btcpay-server.png b/png/btcpay-server.png index 7626c711..214ae402 100644 Binary files a/png/btcpay-server.png and b/png/btcpay-server.png differ diff --git a/png/buddy.png b/png/buddy.png index 2feb4734..5902cf56 100644 Binary files a/png/buddy.png and b/png/buddy.png differ diff --git a/png/budget-zero.png b/png/budget-zero.png index ab01f962..6c6e3d78 100644 Binary files a/png/budget-zero.png and b/png/budget-zero.png differ diff --git a/png/budibase-light.png b/png/budibase-light.png index 91a82429..85b2b785 100644 Binary files a/png/budibase-light.png and b/png/budibase-light.png differ diff --git a/png/budibase.png b/png/budibase.png index 9bc566ce..9b84e32e 100644 Binary files a/png/budibase.png and b/png/budibase.png differ diff --git a/png/buffalo.png b/png/buffalo.png index 3f511e55..24228f71 100644 Binary files a/png/buffalo.png and b/png/buffalo.png differ diff --git a/png/buxfer.png b/png/buxfer.png index 7e071302..eea9d043 100644 Binary files a/png/buxfer.png and b/png/buxfer.png differ diff --git a/png/c.png b/png/c.png index 4406dd48..99516d3e 100644 Binary files a/png/c.png and b/png/c.png differ diff --git a/png/cabot.png b/png/cabot.png index bd0c51b6..5bb16fe7 100644 Binary files a/png/cabot.png and b/png/cabot.png differ diff --git a/png/cacti.png b/png/cacti.png index 8456ea7b..2731dc05 100644 Binary files a/png/cacti.png and b/png/cacti.png differ diff --git a/png/caddy.png b/png/caddy.png index 014caca8..796366c9 100644 Binary files a/png/caddy.png and b/png/caddy.png differ diff --git a/png/cadvisor.png b/png/cadvisor.png index 4ac3d32d..60fb9b5d 100644 Binary files a/png/cadvisor.png and b/png/cadvisor.png differ diff --git a/png/calckey.png b/png/calckey.png index 678fcf5c..f30ce27d 100644 Binary files a/png/calckey.png and b/png/calckey.png differ diff --git a/png/calibre.png b/png/calibre.png index 8bda84b9..a4fa7b33 100644 Binary files a/png/calibre.png and b/png/calibre.png differ diff --git a/png/canonical.png b/png/canonical.png index 8e9d8c9c..0682f2ab 100644 Binary files a/png/canonical.png and b/png/canonical.png differ diff --git a/png/cardigann-light.png b/png/cardigann-light.png index f22cabe9..b84f3927 100644 Binary files a/png/cardigann-light.png and b/png/cardigann-light.png differ diff --git a/png/carrefour.png b/png/carrefour.png index d2097dae..ee2fc726 100644 Binary files a/png/carrefour.png and b/png/carrefour.png differ diff --git a/png/castopod.png b/png/castopod.png index 6488ad1e..b3c1b725 100644 Binary files a/png/castopod.png and b/png/castopod.png differ diff --git a/png/cc-light.png b/png/cc-light.png index c15e4fbd..95dcc458 100644 Binary files a/png/cc-light.png and b/png/cc-light.png differ diff --git a/png/cc.png b/png/cc.png index 705297b0..e84b28df 100644 Binary files a/png/cc.png and b/png/cc.png differ diff --git a/png/centos.png b/png/centos.png index 453bea89..aafc189f 100644 Binary files a/png/centos.png and b/png/centos.png differ diff --git a/png/ceph.png b/png/ceph.png index ae9c3165..9abc6f6c 100644 Binary files a/png/ceph.png and b/png/ceph.png differ diff --git a/png/cert-manager.png b/png/cert-manager.png index 2687e296..8a0a17ca 100644 Binary files a/png/cert-manager.png and b/png/cert-manager.png differ diff --git a/png/changedetection-io.png b/png/changedetection-io.png index c40b5749..b9396755 100644 Binary files a/png/changedetection-io.png and b/png/changedetection-io.png differ diff --git a/png/chatgpt.png b/png/chatgpt.png index a9ddc7c0..94651011 100644 Binary files a/png/chatgpt.png and b/png/chatgpt.png differ diff --git a/png/checkmk.png b/png/checkmk.png index a2253569..64e80d01 100644 Binary files a/png/checkmk.png and b/png/checkmk.png differ diff --git a/png/cherry.png b/png/cherry.png index 91279ce0..d06020d0 100644 Binary files a/png/cherry.png and b/png/cherry.png differ diff --git a/png/chiefonboarding.png b/png/chiefonboarding.png index edc58913..cb69ceae 100644 Binary files a/png/chiefonboarding.png and b/png/chiefonboarding.png differ diff --git a/png/chowdown.png b/png/chowdown.png index eb6bb047..201c24bc 100644 Binary files a/png/chowdown.png and b/png/chowdown.png differ diff --git a/png/chrome-devtools.png b/png/chrome-devtools.png index 38299328..587e5293 100644 Binary files a/png/chrome-devtools.png and b/png/chrome-devtools.png differ diff --git a/png/chrome-remote-desktop.png b/png/chrome-remote-desktop.png index 9b9028dd..ae0634d0 100644 Binary files a/png/chrome-remote-desktop.png and b/png/chrome-remote-desktop.png differ diff --git a/png/chrome.png b/png/chrome.png index 0f0975ad..7cf58e08 100644 Binary files a/png/chrome.png and b/png/chrome.png differ diff --git a/png/chromecast-light.png b/png/chromecast-light.png index 24c0fdd5..399c4543 100644 Binary files a/png/chromecast-light.png and b/png/chromecast-light.png differ diff --git a/png/chromecast.png b/png/chromecast.png index 6742c93c..f2d507cf 100644 Binary files a/png/chromecast.png and b/png/chromecast.png differ diff --git a/png/chronograf.png b/png/chronograf.png index 3c0d0d11..fecc9ee6 100644 Binary files a/png/chronograf.png and b/png/chronograf.png differ diff --git a/png/cilium.png b/png/cilium.png index 8a166c1e..4cf581f0 100644 Binary files a/png/cilium.png and b/png/cilium.png differ diff --git a/png/cinny-light.png b/png/cinny-light.png index 434d7d91..85c5ff8e 100644 Binary files a/png/cinny-light.png and b/png/cinny-light.png differ diff --git a/png/cinny.png b/png/cinny.png index d432aa6d..45f37a05 100644 Binary files a/png/cinny.png and b/png/cinny.png differ diff --git a/png/cisco.png b/png/cisco.png index eac24f13..4d8ecef9 100644 Binary files a/png/cisco.png and b/png/cisco.png differ diff --git a/png/clash.png b/png/clash.png index c624b94d..c9f3284a 100644 Binary files a/png/clash.png and b/png/clash.png differ diff --git a/png/clashX.png b/png/clashX.png index c624b94d..c9f3284a 100644 Binary files a/png/clashX.png and b/png/clashX.png differ diff --git a/png/closed-captioning-light.png b/png/closed-captioning-light.png index c15e4fbd..95dcc458 100644 Binary files a/png/closed-captioning-light.png and b/png/closed-captioning-light.png differ diff --git a/png/closed-captioning.png b/png/closed-captioning.png index 705297b0..e84b28df 100644 Binary files a/png/closed-captioning.png and b/png/closed-captioning.png differ diff --git a/png/cloud66.png b/png/cloud66.png index ecf5ff5f..2800dd27 100644 Binary files a/png/cloud66.png and b/png/cloud66.png differ diff --git a/png/cloud9.png b/png/cloud9.png index 54ca974c..87bfb7b5 100644 Binary files a/png/cloud9.png and b/png/cloud9.png differ diff --git a/png/cloudbeaver.png b/png/cloudbeaver.png index 0664e1bd..c6a836ed 100644 Binary files a/png/cloudbeaver.png and b/png/cloudbeaver.png differ diff --git a/png/cloudflare-pages.png b/png/cloudflare-pages.png index e8e263d0..41b8a1a8 100644 Binary files a/png/cloudflare-pages.png and b/png/cloudflare-pages.png differ diff --git a/png/cloudflare-zero-trust.png b/png/cloudflare-zero-trust.png index 7b4e5ac2..4d3eca70 100644 Binary files a/png/cloudflare-zero-trust.png and b/png/cloudflare-zero-trust.png differ diff --git a/png/cloudflare.png b/png/cloudflare.png index 2f92d6ad..4d33c5f4 100644 Binary files a/png/cloudflare.png and b/png/cloudflare.png differ diff --git a/png/cockpit-cms-light.png b/png/cockpit-cms-light.png index c3b19363..150d2db6 100644 Binary files a/png/cockpit-cms-light.png and b/png/cockpit-cms-light.png differ diff --git a/png/cockpit-cms.png b/png/cockpit-cms.png index 893b699f..1a616f9f 100644 Binary files a/png/cockpit-cms.png and b/png/cockpit-cms.png differ diff --git a/png/code-server.png b/png/code-server.png index 5ab26d7b..5706f724 100644 Binary files a/png/code-server.png and b/png/code-server.png differ diff --git a/png/code.png b/png/code.png index 4ac1db21..af38c2d3 100644 Binary files a/png/code.png and b/png/code.png differ diff --git a/png/codeberg.png b/png/codeberg.png index 1799efe8..15834f0d 100644 Binary files a/png/codeberg.png and b/png/codeberg.png differ diff --git a/png/coder-light.png b/png/coder-light.png index 38c44a69..671afa2d 100644 Binary files a/png/coder-light.png and b/png/coder-light.png differ diff --git a/png/coder.png b/png/coder.png index afa6702a..9c28653c 100644 Binary files a/png/coder.png and b/png/coder.png differ diff --git a/png/codestats-light.png b/png/codestats-light.png index 47e33cad..f69a03ea 100644 Binary files a/png/codestats-light.png and b/png/codestats-light.png differ diff --git a/png/codestats.png b/png/codestats.png index 953413b4..0f55a521 100644 Binary files a/png/codestats.png and b/png/codestats.png differ diff --git a/png/codex.png b/png/codex.png index e1664dc5..fa4a5950 100644 Binary files a/png/codex.png and b/png/codex.png differ diff --git a/png/codimd-light.png b/png/codimd-light.png index 4d211ed5..6978e262 100644 Binary files a/png/codimd-light.png and b/png/codimd-light.png differ diff --git a/png/codimd.png b/png/codimd.png index b86f4604..e96af701 100644 Binary files a/png/codimd.png and b/png/codimd.png differ diff --git a/png/commafeed.png b/png/commafeed.png index dd3c6fe4..70c9fb0b 100644 Binary files a/png/commafeed.png and b/png/commafeed.png differ diff --git a/png/concourse.png b/png/concourse.png index e31d3d2a..d4b4024e 100644 Binary files a/png/concourse.png and b/png/concourse.png differ diff --git a/png/contabo.png b/png/contabo.png index 2e0e7f03..3840e88b 100644 Binary files a/png/contabo.png and b/png/contabo.png differ diff --git a/png/coredns.png b/png/coredns.png index 5c20e35e..6ea177d4 100644 Binary files a/png/coredns.png and b/png/coredns.png differ diff --git a/png/coreos.png b/png/coreos.png index 8293d81e..77090b09 100644 Binary files a/png/coreos.png and b/png/coreos.png differ diff --git a/png/costco.png b/png/costco.png index 9689917f..08ed72df 100644 Binary files a/png/costco.png and b/png/costco.png differ diff --git a/png/couchpotato.png b/png/couchpotato.png index fb5e1808..b89796dc 100644 Binary files a/png/couchpotato.png and b/png/couchpotato.png differ diff --git a/png/cozy-cloud.png b/png/cozy-cloud.png index 96f9d06d..9a27c94c 100644 Binary files a/png/cozy-cloud.png and b/png/cozy-cloud.png differ diff --git a/png/cozy.png b/png/cozy.png index 96f9d06d..9a27c94c 100644 Binary files a/png/cozy.png and b/png/cozy.png differ diff --git a/png/cpanel.png b/png/cpanel.png index f03f8eac..2ab9ce56 100644 Binary files a/png/cpanel.png and b/png/cpanel.png differ diff --git a/png/cpp.png b/png/cpp.png index 1b78c758..89232690 100644 Binary files a/png/cpp.png and b/png/cpp.png differ diff --git a/png/crater-invoice.png b/png/crater-invoice.png index 996fc258..6aad8f00 100644 Binary files a/png/crater-invoice.png and b/png/crater-invoice.png differ diff --git a/png/crazydomains.png b/png/crazydomains.png index 3419101b..f181a1bc 100644 Binary files a/png/crazydomains.png and b/png/crazydomains.png differ diff --git a/png/cross-seed-square.png b/png/cross-seed-square.png index 163179bd..de6d8ee4 100644 Binary files a/png/cross-seed-square.png and b/png/cross-seed-square.png differ diff --git a/png/cross-seed.png b/png/cross-seed.png index 9950e718..4b671119 100644 Binary files a/png/cross-seed.png and b/png/cross-seed.png differ diff --git a/png/crowdsec.png b/png/crowdsec.png index 6d0b7bb1..7c724c96 100644 Binary files a/png/crowdsec.png and b/png/crowdsec.png differ diff --git a/png/cryptomator.png b/png/cryptomator.png index 1ba61fa6..820dfbef 100644 Binary files a/png/cryptomator.png and b/png/cryptomator.png differ diff --git a/png/cryptpad.png b/png/cryptpad.png index 6eda84a0..4c99075b 100644 Binary files a/png/cryptpad.png and b/png/cryptpad.png differ diff --git a/png/csharp.png b/png/csharp.png index c21c1ce2..ac95f12a 100644 Binary files a/png/csharp.png and b/png/csharp.png differ diff --git a/png/css.png b/png/css.png index d006a2af..10cb334e 100644 Binary files a/png/css.png and b/png/css.png differ diff --git a/png/cups-light.png b/png/cups-light.png index 61ff3631..dcd7abf7 100644 Binary files a/png/cups-light.png and b/png/cups-light.png differ diff --git a/png/cups.png b/png/cups.png index e25eff88..032a0403 100644 Binary files a/png/cups.png and b/png/cups.png differ diff --git a/png/cura.png b/png/cura.png index 59f1ccd1..d5d380c6 100644 Binary files a/png/cura.png and b/png/cura.png differ diff --git a/png/cyberchef.png b/png/cyberchef.png index d28a05bc..209d2fd0 100644 Binary files a/png/cyberchef.png and b/png/cyberchef.png differ diff --git a/png/d-link-wifi.png b/png/d-link-wifi.png index 7da83777..bbb4b53b 100644 Binary files a/png/d-link-wifi.png and b/png/d-link-wifi.png differ diff --git a/png/d-link.png b/png/d-link.png index 9108d85c..c48d1d98 100644 Binary files a/png/d-link.png and b/png/d-link.png differ diff --git a/png/dahua.png b/png/dahua.png index 23ffa708..98b5acab 100644 Binary files a/png/dahua.png and b/png/dahua.png differ diff --git a/png/dart.png b/png/dart.png index 0dc708fa..28cd1ea9 100644 Binary files a/png/dart.png and b/png/dart.png differ diff --git a/png/dashboard-icons.png b/png/dashboard-icons.png index b21e362f..bf457aaa 100644 Binary files a/png/dashboard-icons.png and b/png/dashboard-icons.png differ diff --git a/png/dashdot.png b/png/dashdot.png index b5f04e61..eb05984c 100644 Binary files a/png/dashdot.png and b/png/dashdot.png differ diff --git a/png/dashy.png b/png/dashy.png index 088681fc..4f0a6198 100644 Binary files a/png/dashy.png and b/png/dashy.png differ diff --git a/png/datadog.png b/png/datadog.png index 4953ca03..b445ae53 100644 Binary files a/png/datadog.png and b/png/datadog.png differ diff --git a/png/dc-os.png b/png/dc-os.png index a3a79c0c..a2d48569 100644 Binary files a/png/dc-os.png and b/png/dc-os.png differ diff --git a/png/dd-wrt-light.png b/png/dd-wrt-light.png index 816aeaf6..71373b17 100644 Binary files a/png/dd-wrt-light.png and b/png/dd-wrt-light.png differ diff --git a/png/dd-wrt.png b/png/dd-wrt.png index 14e882a6..bfe5b183 100644 Binary files a/png/dd-wrt.png and b/png/dd-wrt.png differ diff --git a/png/ddns-updater.png b/png/ddns-updater.png index 8b56edbe..5feba638 100644 Binary files a/png/ddns-updater.png and b/png/ddns-updater.png differ diff --git a/png/debian.png b/png/debian.png index c45edc5e..44aa3ff5 100644 Binary files a/png/debian.png and b/png/debian.png differ diff --git a/png/deemix.png b/png/deemix.png index 2d7d068e..16481adb 100644 Binary files a/png/deemix.png and b/png/deemix.png differ diff --git a/png/dell.png b/png/dell.png index 99a96521..61f8ec1a 100644 Binary files a/png/dell.png and b/png/dell.png differ diff --git a/png/deluge.png b/png/deluge.png index a0561e8b..23a0972a 100644 Binary files a/png/deluge.png and b/png/deluge.png differ diff --git a/png/deno-light.png b/png/deno-light.png index c130c852..d02bf53c 100644 Binary files a/png/deno-light.png and b/png/deno-light.png differ diff --git a/png/deno.png b/png/deno.png index a03689ba..08d1af8c 100644 Binary files a/png/deno.png and b/png/deno.png differ diff --git a/png/devtooly-light.png b/png/devtooly-light.png index ef195963..3270c97e 100644 Binary files a/png/devtooly-light.png and b/png/devtooly-light.png differ diff --git a/png/devtooly.png b/png/devtooly.png index d02fdaff..fc223560 100644 Binary files a/png/devtooly.png and b/png/devtooly.png differ diff --git a/png/diagrams-net.png b/png/diagrams-net.png index c1f23b76..20348a14 100644 Binary files a/png/diagrams-net.png and b/png/diagrams-net.png differ diff --git a/png/dietpi.png b/png/dietpi.png index 5eba6916..990adea2 100644 Binary files a/png/dietpi.png and b/png/dietpi.png differ diff --git a/png/digital-ocean.png b/png/digital-ocean.png index 9b19b793..72bbbcae 100644 Binary files a/png/digital-ocean.png and b/png/digital-ocean.png differ diff --git a/png/dillinger.png b/png/dillinger.png index d6b1317c..2f3ff822 100644 Binary files a/png/dillinger.png and b/png/dillinger.png differ diff --git a/png/directus.png b/png/directus.png index a24aa837..bcf820fd 100644 Binary files a/png/directus.png and b/png/directus.png differ diff --git a/png/discord.png b/png/discord.png index 7b587638..ac95e0e7 100644 Binary files a/png/discord.png and b/png/discord.png differ diff --git a/png/discourse.png b/png/discourse.png index b66ccca5..4c380659 100644 Binary files a/png/discourse.png and b/png/discourse.png differ diff --git a/png/diskover.png b/png/diskover.png index 6219a48e..09f014a0 100644 Binary files a/png/diskover.png and b/png/diskover.png differ diff --git a/png/dlna.png b/png/dlna.png index f6187346..a13489ce 100644 Binary files a/png/dlna.png and b/png/dlna.png differ diff --git a/png/docker-amd.png b/png/docker-amd.png index e5cae06c..a17cef01 100644 Binary files a/png/docker-amd.png and b/png/docker-amd.png differ diff --git a/png/docker-compose.png b/png/docker-compose.png index 4dfe4bc1..9c18f186 100644 Binary files a/png/docker-compose.png and b/png/docker-compose.png differ diff --git a/png/docker-gc.png b/png/docker-gc.png index 337d2f06..55cddb5c 100644 Binary files a/png/docker-gc.png and b/png/docker-gc.png differ diff --git a/png/docker-mailserver.png b/png/docker-mailserver.png index f597f164..d3851116 100644 Binary files a/png/docker-mailserver.png and b/png/docker-mailserver.png differ diff --git a/png/docker-moby.png b/png/docker-moby.png index a55db715..c38aa910 100644 Binary files a/png/docker-moby.png and b/png/docker-moby.png differ diff --git a/png/docker.png b/png/docker.png index 359260fa..ff34a161 100644 Binary files a/png/docker.png and b/png/docker.png differ diff --git a/png/dockstarter.png b/png/dockstarter.png index d6ac9948..b81ad756 100644 Binary files a/png/dockstarter.png and b/png/dockstarter.png differ diff --git a/png/docspell.png b/png/docspell.png index 9b02f25b..d427d428 100644 Binary files a/png/docspell.png and b/png/docspell.png differ diff --git a/png/dogpile.png b/png/dogpile.png index 00dd5394..89cd04e1 100644 Binary files a/png/dogpile.png and b/png/dogpile.png differ diff --git a/png/dokuwiki.png b/png/dokuwiki.png index c8f0efda..1a238b09 100644 Binary files a/png/dokuwiki.png and b/png/dokuwiki.png differ diff --git a/png/dolibarr.png b/png/dolibarr.png index 22ecd4ec..09858c14 100644 Binary files a/png/dolibarr.png and b/png/dolibarr.png differ diff --git a/png/domainmod.png b/png/domainmod.png index ff3267b8..29290f29 100644 Binary files a/png/domainmod.png and b/png/domainmod.png differ diff --git a/png/domoticz.png b/png/domoticz.png index 35090c86..d618b6e8 100644 Binary files a/png/domoticz.png and b/png/domoticz.png differ diff --git a/png/dopplertask.png b/png/dopplertask.png index d9fad9f5..3bc9ab62 100644 Binary files a/png/dopplertask.png and b/png/dopplertask.png differ diff --git a/png/double-take.png b/png/double-take.png index b6faa487..dda25011 100644 Binary files a/png/double-take.png and b/png/double-take.png differ diff --git a/png/dovecot.png b/png/dovecot.png index 5b5dd9fd..cfef009e 100644 Binary files a/png/dovecot.png and b/png/dovecot.png differ diff --git a/png/dozzle.png b/png/dozzle.png index e578f7f0..44687dcc 100644 Binary files a/png/dozzle.png and b/png/dozzle.png differ diff --git a/png/draw-io.png b/png/draw-io.png index c1f23b76..20348a14 100644 Binary files a/png/draw-io.png and b/png/draw-io.png differ diff --git a/png/draw.png b/png/draw.png index c1f23b76..20348a14 100644 Binary files a/png/draw.png and b/png/draw.png differ diff --git a/png/draytek.png b/png/draytek.png index 7d2d7d24..9f6ecdb2 100644 Binary files a/png/draytek.png and b/png/draytek.png differ diff --git a/png/drone.png b/png/drone.png index 8611338c..e5807833 100644 Binary files a/png/drone.png and b/png/drone.png differ diff --git a/png/droppy.png b/png/droppy.png index 833afaaa..72afa21c 100644 Binary files a/png/droppy.png and b/png/droppy.png differ diff --git a/png/duckdns.png b/png/duckdns.png index 7fce0390..b25e922d 100644 Binary files a/png/duckdns.png and b/png/duckdns.png differ diff --git a/png/duckduckgo.png b/png/duckduckgo.png index 6208bddc..ff494ffe 100644 Binary files a/png/duckduckgo.png and b/png/duckduckgo.png differ diff --git a/png/duo.png b/png/duo.png index 1cc872f0..cff538d2 100644 Binary files a/png/duo.png and b/png/duo.png differ diff --git a/png/duplicacy.png b/png/duplicacy.png index e05d19ec..718491c5 100644 Binary files a/png/duplicacy.png and b/png/duplicacy.png differ diff --git a/png/ebay.png b/png/ebay.png index 65467391..746399bd 100644 Binary files a/png/ebay.png and b/png/ebay.png differ diff --git a/png/edge-dev.png b/png/edge-dev.png index 15de11a1..e0cc5882 100644 Binary files a/png/edge-dev.png and b/png/edge-dev.png differ diff --git a/png/edge.png b/png/edge.png index a58f1381..60660f8d 100644 Binary files a/png/edge.png and b/png/edge.png differ diff --git a/png/edgeos-light.png b/png/edgeos-light.png index b2db2382..4ab4c9af 100644 Binary files a/png/edgeos-light.png and b/png/edgeos-light.png differ diff --git a/png/edgeos.png b/png/edgeos.png index 37001bb2..a689fd4d 100644 Binary files a/png/edgeos.png and b/png/edgeos.png differ diff --git a/png/elastic-beats.png b/png/elastic-beats.png index 88f36bb0..f688578c 100644 Binary files a/png/elastic-beats.png and b/png/elastic-beats.png differ diff --git a/png/elastic-kibana.png b/png/elastic-kibana.png index 167ea1d3..658569e8 100644 Binary files a/png/elastic-kibana.png and b/png/elastic-kibana.png differ diff --git a/png/elastic-logstash.png b/png/elastic-logstash.png index 1242bf88..c0285cc0 100644 Binary files a/png/elastic-logstash.png and b/png/elastic-logstash.png differ diff --git a/png/elastic.png b/png/elastic.png index 31ecde90..2c3160ad 100644 Binary files a/png/elastic.png and b/png/elastic.png differ diff --git a/png/elasticsearch.png b/png/elasticsearch.png index 31ecde90..2c3160ad 100644 Binary files a/png/elasticsearch.png and b/png/elasticsearch.png differ diff --git a/png/electron.png b/png/electron.png index 643cd7da..f0ee6422 100644 Binary files a/png/electron.png and b/png/electron.png differ diff --git a/png/element.png b/png/element.png index 7c74b917..af61ec93 100644 Binary files a/png/element.png and b/png/element.png differ diff --git a/png/emacs.png b/png/emacs.png index e79c7922..b48f4000 100644 Binary files a/png/emacs.png and b/png/emacs.png differ diff --git a/png/emby.png b/png/emby.png index 515ff8e1..34065491 100644 Binary files a/png/emby.png and b/png/emby.png differ diff --git a/png/emq-light.png b/png/emq-light.png index 4de3261a..339091e5 100644 Binary files a/png/emq-light.png and b/png/emq-light.png differ diff --git a/png/emq.png b/png/emq.png index a75dd9ac..31724045 100644 Binary files a/png/emq.png and b/png/emq.png differ diff --git a/png/emulatorjs.png b/png/emulatorjs.png index e65726d1..21764117 100644 Binary files a/png/emulatorjs.png and b/png/emulatorjs.png differ diff --git a/png/epson-iprint.png b/png/epson-iprint.png index ff6a1510..1e1f050e 100644 Binary files a/png/epson-iprint.png and b/png/epson-iprint.png differ diff --git a/png/ersatztv.png b/png/ersatztv.png index cec5037b..ed7fc902 100644 Binary files a/png/ersatztv.png and b/png/ersatztv.png differ diff --git a/png/erste-george.png b/png/erste-george.png index 55123498..68cb2c18 100644 Binary files a/png/erste-george.png and b/png/erste-george.png differ diff --git a/png/erste.png b/png/erste.png index 4c0fe50b..adbb5767 100644 Binary files a/png/erste.png and b/png/erste.png differ diff --git a/png/esphome.png b/png/esphome.png index 09e4658e..e0589d73 100644 Binary files a/png/esphome.png and b/png/esphome.png differ diff --git a/png/espressif.png b/png/espressif.png index b8c3c738..503f87b7 100644 Binary files a/png/espressif.png and b/png/espressif.png differ diff --git a/png/etcd.png b/png/etcd.png index e40ce504..1b21d964 100644 Binary files a/png/etcd.png and b/png/etcd.png differ diff --git a/png/etesync.png b/png/etesync.png index 5a394962..b5aa2a14 100644 Binary files a/png/etesync.png and b/png/etesync.png differ diff --git a/png/ethereum.png b/png/ethereum.png index 6befbcd1..78e72524 100644 Binary files a/png/ethereum.png and b/png/ethereum.png differ diff --git a/png/etherpad.png b/png/etherpad.png index b2a8028a..7b1fbcc4 100644 Binary files a/png/etherpad.png and b/png/etherpad.png differ diff --git a/png/evebox.png b/png/evebox.png index e7e6e1ab..b95b491b 100644 Binary files a/png/evebox.png and b/png/evebox.png differ diff --git a/png/eweka.png b/png/eweka.png index fcebf184..ec49957c 100644 Binary files a/png/eweka.png and b/png/eweka.png differ diff --git a/png/facebook-messenger.png b/png/facebook-messenger.png index 418ec089..46abcd01 100644 Binary files a/png/facebook-messenger.png and b/png/facebook-messenger.png differ diff --git a/png/facebook.png b/png/facebook.png index 5d864c98..d57c0ec4 100644 Binary files a/png/facebook.png and b/png/facebook.png differ diff --git a/png/falcon-christmas.png b/png/falcon-christmas.png index 9b83abdc..c5041387 100644 Binary files a/png/falcon-christmas.png and b/png/falcon-christmas.png differ diff --git a/png/falcon-player.png b/png/falcon-player.png index 9b83abdc..c5041387 100644 Binary files a/png/falcon-player.png and b/png/falcon-player.png differ diff --git a/png/fastmail.png b/png/fastmail.png index 3e2358a5..8d7f61b3 100644 Binary files a/png/fastmail.png and b/png/fastmail.png differ diff --git a/png/fedora-alt.png b/png/fedora-alt.png index 00aeb230..31b36353 100644 Binary files a/png/fedora-alt.png and b/png/fedora-alt.png differ diff --git a/png/fedora.png b/png/fedora.png index ea355fbf..80de32b7 100644 Binary files a/png/fedora.png and b/png/fedora.png differ diff --git a/png/feedly.png b/png/feedly.png index f702a468..3146ec96 100644 Binary files a/png/feedly.png and b/png/feedly.png differ diff --git a/png/ferdi.png b/png/ferdi.png index a303861a..8f230f97 100644 Binary files a/png/ferdi.png and b/png/ferdi.png differ diff --git a/png/ferdium.png b/png/ferdium.png index e7eefadd..225833bc 100644 Binary files a/png/ferdium.png and b/png/ferdium.png differ diff --git a/png/fermentrack.png b/png/fermentrack.png index b60c8189..972f1f34 100644 Binary files a/png/fermentrack.png and b/png/fermentrack.png differ diff --git a/png/ferretdb-white.png b/png/ferretdb-white.png index a3297fc5..12103976 100644 Binary files a/png/ferretdb-white.png and b/png/ferretdb-white.png differ diff --git a/png/ferretdb.png b/png/ferretdb.png index 3d2dc4e2..b5060d01 100644 Binary files a/png/ferretdb.png and b/png/ferretdb.png differ diff --git a/png/filebot.png b/png/filebot.png index 9c20f788..ff91e12c 100644 Binary files a/png/filebot.png and b/png/filebot.png differ diff --git a/png/filebrowser.png b/png/filebrowser.png index 1d28932e..7e54287d 100644 Binary files a/png/filebrowser.png and b/png/filebrowser.png differ diff --git a/png/fileflows.png b/png/fileflows.png index 7e68ee16..a3b64f03 100644 Binary files a/png/fileflows.png and b/png/fileflows.png differ diff --git a/png/filepizza.png b/png/filepizza.png index a16307d6..7fe6305d 100644 Binary files a/png/filepizza.png and b/png/filepizza.png differ diff --git a/png/filerun.png b/png/filerun.png index bbdab948..6362493c 100644 Binary files a/png/filerun.png and b/png/filerun.png differ diff --git a/png/files.png b/png/files.png index e557f58c..af38d9af 100644 Binary files a/png/files.png and b/png/files.png differ diff --git a/png/filezilla.png b/png/filezilla.png index b3586e9a..b88e9c49 100644 Binary files a/png/filezilla.png and b/png/filezilla.png differ diff --git a/png/fios-light.png b/png/fios-light.png index 2782cb60..f6185fee 100644 Binary files a/png/fios-light.png and b/png/fios-light.png differ diff --git a/png/fios.png b/png/fios.png index 2f1c2fa0..5111ebac 100644 Binary files a/png/fios.png and b/png/fios.png differ diff --git a/png/firefly.png b/png/firefly.png index c5acedd8..51f89a2b 100644 Binary files a/png/firefly.png and b/png/firefly.png differ diff --git a/png/firefox-beta.png b/png/firefox-beta.png index d8810c03..629fdf5a 100644 Binary files a/png/firefox-beta.png and b/png/firefox-beta.png differ diff --git a/png/firefox-lite.png b/png/firefox-lite.png index 07d00101..ddef7761 100644 Binary files a/png/firefox-lite.png and b/png/firefox-lite.png differ diff --git a/png/firefox-nightly.png b/png/firefox-nightly.png index 0a2fa6fb..8b73982e 100644 Binary files a/png/firefox-nightly.png and b/png/firefox-nightly.png differ diff --git a/png/firefox-reality.png b/png/firefox-reality.png index 4370c641..a548e40f 100644 Binary files a/png/firefox-reality.png and b/png/firefox-reality.png differ diff --git a/png/firefox-send.png b/png/firefox-send.png index 4bca3838..e57083f3 100644 Binary files a/png/firefox-send.png and b/png/firefox-send.png differ diff --git a/png/firefox.png b/png/firefox.png index 811cad8b..6d182b99 100644 Binary files a/png/firefox.png and b/png/firefox.png differ diff --git a/png/fireshare.png b/png/fireshare.png index 2c6cc9db..14a1438b 100644 Binary files a/png/fireshare.png and b/png/fireshare.png differ diff --git a/png/firewalla.png b/png/firewalla.png index eefb762a..3814f116 100644 Binary files a/png/firewalla.png and b/png/firewalla.png differ diff --git a/png/flame.png b/png/flame.png index 15b28e10..473084e6 100644 Binary files a/png/flame.png and b/png/flame.png differ diff --git a/png/flathub.png b/png/flathub.png index 284c7e39..bced00ee 100644 Binary files a/png/flathub.png and b/png/flathub.png differ diff --git a/png/flatpak.png b/png/flatpak.png index 312b87bc..76a983e4 100644 Binary files a/png/flatpak.png and b/png/flatpak.png differ diff --git a/png/flightaware.png b/png/flightaware.png index bfab88d9..f1e87c24 100644 Binary files a/png/flightaware.png and b/png/flightaware.png differ diff --git a/png/flightradar24.png b/png/flightradar24.png index 99e5826f..1f49b89c 100644 Binary files a/png/flightradar24.png and b/png/flightradar24.png differ diff --git a/png/flogo.png b/png/flogo.png index 333c2197..399ceaf2 100644 Binary files a/png/flogo.png and b/png/flogo.png differ diff --git a/png/flood.png b/png/flood.png index a32c5905..3e9dfc80 100644 Binary files a/png/flood.png and b/png/flood.png differ diff --git a/png/fluffychat.png b/png/fluffychat.png index 35cebc3e..c602438a 100644 Binary files a/png/fluffychat.png and b/png/fluffychat.png differ diff --git a/png/fluidd.png b/png/fluidd.png index a247afa4..1f27e48d 100644 Binary files a/png/fluidd.png and b/png/fluidd.png differ diff --git a/png/flux-cd.png b/png/flux-cd.png index 3e2178d1..702ddd29 100644 Binary files a/png/flux-cd.png and b/png/flux-cd.png differ diff --git a/png/focalboard.png b/png/focalboard.png index 98f31c43..6736b67f 100644 Binary files a/png/focalboard.png and b/png/focalboard.png differ diff --git a/png/foldingathome.png b/png/foldingathome.png index 3e273f99..4df07476 100644 Binary files a/png/foldingathome.png and b/png/foldingathome.png differ diff --git a/png/fontawesome.png b/png/fontawesome.png index 56458466..bb847675 100644 Binary files a/png/fontawesome.png and b/png/fontawesome.png differ diff --git a/png/forgejo.png b/png/forgejo.png index 3cabe93f..387b27f9 100644 Binary files a/png/forgejo.png and b/png/forgejo.png differ diff --git a/png/foscam.png b/png/foscam.png index 18479483..1b68b0a9 100644 Binary files a/png/foscam.png and b/png/foscam.png differ diff --git a/png/fossil.png b/png/fossil.png index 9d6df62b..927d5659 100644 Binary files a/png/fossil.png and b/png/fossil.png differ diff --git a/png/foundry-vtt.png b/png/foundry-vtt.png index c6db19b0..11795fe3 100644 Binary files a/png/foundry-vtt.png and b/png/foundry-vtt.png differ diff --git a/png/franz.png b/png/franz.png index 697a2eee..1e35ec60 100644 Binary files a/png/franz.png and b/png/franz.png differ diff --git a/png/freedombox.png b/png/freedombox.png index a19eb12f..6b26efcc 100644 Binary files a/png/freedombox.png and b/png/freedombox.png differ diff --git a/png/freeipa.png b/png/freeipa.png index 77c58594..947278be 100644 Binary files a/png/freeipa.png and b/png/freeipa.png differ diff --git a/png/freenas-light.png b/png/freenas-light.png index 45a7a30f..49e93428 100644 Binary files a/png/freenas-light.png and b/png/freenas-light.png differ diff --git a/png/freenas.png b/png/freenas.png index 01e6db78..51ee445f 100644 Binary files a/png/freenas.png and b/png/freenas.png differ diff --git a/png/freenom.png b/png/freenom.png index 03acaa1b..75cade91 100644 Binary files a/png/freenom.png and b/png/freenom.png differ diff --git a/png/freepbx.png b/png/freepbx.png index 3a9f620d..3932e620 100644 Binary files a/png/freepbx.png and b/png/freepbx.png differ diff --git a/png/freescout.png b/png/freescout.png index 509f2090..27cb8bb5 100644 Binary files a/png/freescout.png and b/png/freescout.png differ diff --git a/png/freshping.png b/png/freshping.png index 407399d8..6efff533 100644 Binary files a/png/freshping.png and b/png/freshping.png differ diff --git a/png/freshrss.png b/png/freshrss.png index 4ae7b9a7..97ad00a8 100644 Binary files a/png/freshrss.png and b/png/freshrss.png differ diff --git a/png/frigate-light.png b/png/frigate-light.png index 429b7886..43e1bc81 100644 Binary files a/png/frigate-light.png and b/png/frigate-light.png differ diff --git a/png/frigate.png b/png/frigate.png index 4a2d20c5..ee206eff 100644 Binary files a/png/frigate.png and b/png/frigate.png differ diff --git a/png/fronius.png b/png/fronius.png index 5e53a004..c30465e5 100644 Binary files a/png/fronius.png and b/png/fronius.png differ diff --git a/png/funkwhale.png b/png/funkwhale.png index ce679232..1ea296f7 100644 Binary files a/png/funkwhale.png and b/png/funkwhale.png differ diff --git a/png/fusionpbx.png b/png/fusionpbx.png index 8ae9065c..e655183e 100644 Binary files a/png/fusionpbx.png and b/png/fusionpbx.png differ diff --git a/png/gameyfin-light.png b/png/gameyfin-light.png index bd237689..2b9a9fb6 100644 Binary files a/png/gameyfin-light.png and b/png/gameyfin-light.png differ diff --git a/png/gameyfin.png b/png/gameyfin.png index d61cd249..3ca8b5b0 100644 Binary files a/png/gameyfin.png and b/png/gameyfin.png differ diff --git a/png/gaps.png b/png/gaps.png index d47439df..57ed1ee9 100644 Binary files a/png/gaps.png and b/png/gaps.png differ diff --git a/png/gatsby.png b/png/gatsby.png index 688223bb..4aa7b0b4 100644 Binary files a/png/gatsby.png and b/png/gatsby.png differ diff --git a/png/gatus.png b/png/gatus.png index 663794e3..27a09d4a 100644 Binary files a/png/gatus.png and b/png/gatus.png differ diff --git a/png/gboard.png b/png/gboard.png index 7631cbb2..1570cab3 100644 Binary files a/png/gboard.png and b/png/gboard.png differ diff --git a/png/geckoview.png b/png/geckoview.png index a7fdb6af..25e621f1 100644 Binary files a/png/geckoview.png and b/png/geckoview.png differ diff --git a/png/gentoo.png b/png/gentoo.png index 31c1167b..f03bb1eb 100644 Binary files a/png/gentoo.png and b/png/gentoo.png differ diff --git a/png/gerbera.png b/png/gerbera.png index 8f2af583..7509fc99 100644 Binary files a/png/gerbera.png and b/png/gerbera.png differ diff --git a/png/ghost-light.png b/png/ghost-light.png index c3c1d418..3c687df3 100644 Binary files a/png/ghost-light.png and b/png/ghost-light.png differ diff --git a/png/ghost.png b/png/ghost.png index a3cd72dc..47fc59a8 100644 Binary files a/png/ghost.png and b/png/ghost.png differ diff --git a/png/ghostfolio.png b/png/ghostfolio.png index a579ac04..c054b3d7 100644 Binary files a/png/ghostfolio.png and b/png/ghostfolio.png differ diff --git a/png/gigaset.png b/png/gigaset.png index fc817cbb..6835eedf 100644 Binary files a/png/gigaset.png and b/png/gigaset.png differ diff --git a/png/git.png b/png/git.png index c8dc342c..07dc0bc0 100644 Binary files a/png/git.png and b/png/git.png differ diff --git a/png/gitbook.png b/png/gitbook.png new file mode 100644 index 00000000..ecaeac31 Binary files /dev/null and b/png/gitbook.png differ diff --git a/png/gitea.png b/png/gitea.png index aeddcb51..a27a3120 100644 Binary files a/png/gitea.png and b/png/gitea.png differ diff --git a/png/github-light.png b/png/github-light.png index a477c9c9..2c951a05 100644 Binary files a/png/github-light.png and b/png/github-light.png differ diff --git a/png/github.png b/png/github.png index bc9402ba..1fc4c80f 100644 Binary files a/png/github.png and b/png/github.png differ diff --git a/png/gitlab.png b/png/gitlab.png index 58427aee..d615acd3 100644 Binary files a/png/gitlab.png and b/png/gitlab.png differ diff --git a/png/gladys-assistant.png b/png/gladys-assistant.png index f26d1262..190579c4 100644 Binary files a/png/gladys-assistant.png and b/png/gladys-assistant.png differ diff --git a/png/glances.png b/png/glances.png index 574508da..58e3e516 100644 Binary files a/png/glances.png and b/png/glances.png differ diff --git a/png/glpi.png b/png/glpi.png index d68f2066..54a073e7 100644 Binary files a/png/glpi.png and b/png/glpi.png differ diff --git a/png/gluetun.png b/png/gluetun.png index 1a2a481f..fe4b3110 100644 Binary files a/png/gluetun.png and b/png/gluetun.png differ diff --git a/png/gmail.png b/png/gmail.png index 6cb54541..f5e64c87 100644 Binary files a/png/gmail.png and b/png/gmail.png differ diff --git a/png/go.png b/png/go.png index 98c82f7a..f4e846c2 100644 Binary files a/png/go.png and b/png/go.png differ diff --git a/png/goaccess.png b/png/goaccess.png index 3d98829a..3049be16 100644 Binary files a/png/goaccess.png and b/png/goaccess.png differ diff --git a/png/gogs.png b/png/gogs.png index 108193a3..28e35265 100644 Binary files a/png/gogs.png and b/png/gogs.png differ diff --git a/png/gonic.png b/png/gonic.png index 9f706817..ff5a2752 100644 Binary files a/png/gonic.png and b/png/gonic.png differ diff --git a/png/google-admin.png b/png/google-admin.png index f6ee2d67..33205e2f 100644 Binary files a/png/google-admin.png and b/png/google-admin.png differ diff --git a/png/google-admob.png b/png/google-admob.png index 781ef682..24371874 100644 Binary files a/png/google-admob.png and b/png/google-admob.png differ diff --git a/png/google-alerts.png b/png/google-alerts.png index a6fabce2..9a509e46 100644 Binary files a/png/google-alerts.png and b/png/google-alerts.png differ diff --git a/png/google-analytics.png b/png/google-analytics.png index 81ac3740..a31f5db9 100644 Binary files a/png/google-analytics.png and b/png/google-analytics.png differ diff --git a/png/google-assistant.png b/png/google-assistant.png index 9691ceec..41b9dfbb 100644 Binary files a/png/google-assistant.png and b/png/google-assistant.png differ diff --git a/png/google-calendar.png b/png/google-calendar.png index e2e0db1a..e3b4822b 100644 Binary files a/png/google-calendar.png and b/png/google-calendar.png differ diff --git a/png/google-chat.png b/png/google-chat.png index 6918565e..3fe6a39f 100644 Binary files a/png/google-chat.png and b/png/google-chat.png differ diff --git a/png/google-classroom.png b/png/google-classroom.png index c3f6bb02..995ae9f3 100644 Binary files a/png/google-classroom.png and b/png/google-classroom.png differ diff --git a/png/google-cloud-platform.png b/png/google-cloud-platform.png index a5a58cea..3f9e7db4 100644 Binary files a/png/google-cloud-platform.png and b/png/google-cloud-platform.png differ diff --git a/png/google-cloud-print.png b/png/google-cloud-print.png index ce32838a..799f8afd 100644 Binary files a/png/google-cloud-print.png and b/png/google-cloud-print.png differ diff --git a/png/google-compute-engine.png b/png/google-compute-engine.png index 9a4e4714..3efec7db 100644 Binary files a/png/google-compute-engine.png and b/png/google-compute-engine.png differ diff --git a/png/google-contacts.png b/png/google-contacts.png index 89c70787..7c50f167 100644 Binary files a/png/google-contacts.png and b/png/google-contacts.png differ diff --git a/png/google-docs.png b/png/google-docs.png index 493cb57d..26e69050 100644 Binary files a/png/google-docs.png and b/png/google-docs.png differ diff --git a/png/google-domains.png b/png/google-domains.png index c11c292c..fbc51e5b 100644 Binary files a/png/google-domains.png and b/png/google-domains.png differ diff --git a/png/google-drive.png b/png/google-drive.png index 9abd0eaf..af1e5607 100644 Binary files a/png/google-drive.png and b/png/google-drive.png differ diff --git a/png/google-earth.png b/png/google-earth.png index 89815c43..70396a20 100644 Binary files a/png/google-earth.png and b/png/google-earth.png differ diff --git a/png/google-fi.png b/png/google-fi.png index 6182b166..1eedd967 100644 Binary files a/png/google-fi.png and b/png/google-fi.png differ diff --git a/png/google-fit.png b/png/google-fit.png index e3c94a8d..0cdfc435 100644 Binary files a/png/google-fit.png and b/png/google-fit.png differ diff --git a/png/google-fonts.png b/png/google-fonts.png index 740b5422..51e5173a 100644 Binary files a/png/google-fonts.png and b/png/google-fonts.png differ diff --git a/png/google-forms.png b/png/google-forms.png index 91651d54..488050c9 100644 Binary files a/png/google-forms.png and b/png/google-forms.png differ diff --git a/png/google-home.png b/png/google-home.png index 315ffaca..109d0659 100644 Binary files a/png/google-home.png and b/png/google-home.png differ diff --git a/png/google-keep.png b/png/google-keep.png index e0478afc..63322e42 100644 Binary files a/png/google-keep.png and b/png/google-keep.png differ diff --git a/png/google-lens.png b/png/google-lens.png index 4ed2388f..64f0974e 100644 Binary files a/png/google-lens.png and b/png/google-lens.png differ diff --git a/png/google-maps.png b/png/google-maps.png index accf65ab..88e0fdf6 100644 Binary files a/png/google-maps.png and b/png/google-maps.png differ diff --git a/png/google-meet.png b/png/google-meet.png index e266d2d2..ac1557fa 100644 Binary files a/png/google-meet.png and b/png/google-meet.png differ diff --git a/png/google-messages.png b/png/google-messages.png index dea09592..975beedc 100644 Binary files a/png/google-messages.png and b/png/google-messages.png differ diff --git a/png/google-news.png b/png/google-news.png index dcbfbe8f..30d5b7a7 100644 Binary files a/png/google-news.png and b/png/google-news.png differ diff --git a/png/google-one.png b/png/google-one.png index 2987368a..0b692602 100644 Binary files a/png/google-one.png and b/png/google-one.png differ diff --git a/png/google-pay.png b/png/google-pay.png index 82142c2c..d42b1e47 100644 Binary files a/png/google-pay.png and b/png/google-pay.png differ diff --git a/png/google-photos.png b/png/google-photos.png index 97f9a1bb..34a06a39 100644 Binary files a/png/google-photos.png and b/png/google-photos.png differ diff --git a/png/google-play-books.png b/png/google-play-books.png index dae9884c..f16c2fe6 100644 Binary files a/png/google-play-books.png and b/png/google-play-books.png differ diff --git a/png/google-play-games.png b/png/google-play-games.png index 80dfc216..732c2db2 100644 Binary files a/png/google-play-games.png and b/png/google-play-games.png differ diff --git a/png/google-play.png b/png/google-play.png index dcafa723..9d82be10 100644 Binary files a/png/google-play.png and b/png/google-play.png differ diff --git a/png/google-podcasts.png b/png/google-podcasts.png index cc56516d..087f5498 100644 Binary files a/png/google-podcasts.png and b/png/google-podcasts.png differ diff --git a/png/google-scholar.png b/png/google-scholar.png index 82c329e2..a326849e 100644 Binary files a/png/google-scholar.png and b/png/google-scholar.png differ diff --git a/png/google-search-console.png b/png/google-search-console.png index f3f97f7b..258b405e 100644 Binary files a/png/google-search-console.png and b/png/google-search-console.png differ diff --git a/png/google-sheets.png b/png/google-sheets.png index 3d625130..9566453d 100644 Binary files a/png/google-sheets.png and b/png/google-sheets.png differ diff --git a/png/google-shopping.png b/png/google-shopping.png index 96872cc7..9175c951 100644 Binary files a/png/google-shopping.png and b/png/google-shopping.png differ diff --git a/png/google-sites.png b/png/google-sites.png index 8d71cd1e..e484c160 100644 Binary files a/png/google-sites.png and b/png/google-sites.png differ diff --git a/png/google-slides.png b/png/google-slides.png index ac0cbd4b..ff9ac476 100644 Binary files a/png/google-slides.png and b/png/google-slides.png differ diff --git a/png/google-street-view.png b/png/google-street-view.png index 8d91bb40..9b7a58fb 100644 Binary files a/png/google-street-view.png and b/png/google-street-view.png differ diff --git a/png/google-translate.png b/png/google-translate.png index 83f1087c..3ec034ce 100644 Binary files a/png/google-translate.png and b/png/google-translate.png differ diff --git a/png/google-tv.png b/png/google-tv.png index 485ffe6a..8ab58319 100644 Binary files a/png/google-tv.png and b/png/google-tv.png differ diff --git a/png/google-voice.png b/png/google-voice.png index c7d3952d..98048a0a 100644 Binary files a/png/google-voice.png and b/png/google-voice.png differ diff --git a/png/google-wallet.png b/png/google-wallet.png index d9527288..2c10ef2d 100644 Binary files a/png/google-wallet.png and b/png/google-wallet.png differ diff --git a/png/google-wifi.png b/png/google-wifi.png index e97f40cf..e624945a 100644 Binary files a/png/google-wifi.png and b/png/google-wifi.png differ diff --git a/png/google.png b/png/google.png index 62cdcb7c..3b8b06c4 100644 Binary files a/png/google.png and b/png/google.png differ diff --git a/png/gotify.png b/png/gotify.png index 4ab0506c..aa4549ca 100644 Binary files a/png/gotify.png and b/png/gotify.png differ diff --git a/png/grafana.png b/png/grafana.png index 9391f516..78b2f8cc 100644 Binary files a/png/grafana.png and b/png/grafana.png differ diff --git a/png/grav-light.png b/png/grav-light.png index d82faf75..4f4f6f93 100644 Binary files a/png/grav-light.png and b/png/grav-light.png differ diff --git a/png/grav.png b/png/grav.png index 46957c7d..8ca64a4c 100644 Binary files a/png/grav.png and b/png/grav.png differ diff --git a/png/graylog.png b/png/graylog.png index c4d7afbf..f29da6f6 100644 Binary files a/png/graylog.png and b/png/graylog.png differ diff --git a/png/grocy.png b/png/grocy.png index 11648b3f..b89e9c6c 100644 Binary files a/png/grocy.png and b/png/grocy.png differ diff --git a/png/guacamole-light.png b/png/guacamole-light.png index 324870a0..083c9769 100644 Binary files a/png/guacamole-light.png and b/png/guacamole-light.png differ diff --git a/png/guacamole.png b/png/guacamole.png index 82a8f8fd..59f3d8bd 100644 Binary files a/png/guacamole.png and b/png/guacamole.png differ diff --git a/png/hammond.png b/png/hammond.png index cb49d210..a021c62c 100644 Binary files a/png/hammond.png and b/png/hammond.png differ diff --git a/png/handbrake.png b/png/handbrake.png index a4353878..725ceb94 100644 Binary files a/png/handbrake.png and b/png/handbrake.png differ diff --git a/png/haproxy.png b/png/haproxy.png index d3eacf56..e094d0d6 100644 Binary files a/png/haproxy.png and b/png/haproxy.png differ diff --git a/png/hard-forum.png b/png/hard-forum.png index fa12923e..84a4e811 100644 Binary files a/png/hard-forum.png and b/png/hard-forum.png differ diff --git a/png/harvester.png b/png/harvester.png index 4e4c11fc..db1e5373 100644 Binary files a/png/harvester.png and b/png/harvester.png differ diff --git a/png/hasura.png b/png/hasura.png index e38baf3d..d2297bab 100644 Binary files a/png/hasura.png and b/png/hasura.png differ diff --git a/png/hatsh-light.png b/png/hatsh-light.png index 1d1539b4..3c47a869 100644 Binary files a/png/hatsh-light.png and b/png/hatsh-light.png differ diff --git a/png/hatsh.png b/png/hatsh.png index be146608..185255e5 100644 Binary files a/png/hatsh.png and b/png/hatsh.png differ diff --git a/png/hdhomerun.png b/png/hdhomerun.png index 20676c18..a05f6979 100644 Binary files a/png/hdhomerun.png and b/png/hdhomerun.png differ diff --git a/png/headphones.png b/png/headphones.png index f4b48b2c..34b7910d 100644 Binary files a/png/headphones.png and b/png/headphones.png differ diff --git a/png/healthchecks-v2.png b/png/healthchecks-v2.png index 2ca688f5..2e07785b 100644 Binary files a/png/healthchecks-v2.png and b/png/healthchecks-v2.png differ diff --git a/png/healthchecks.png b/png/healthchecks.png index 75bcd673..c5927594 100644 Binary files a/png/healthchecks.png and b/png/healthchecks.png differ diff --git a/png/heimdall-light.png b/png/heimdall-light.png index 2239c38c..c12f45b8 100644 Binary files a/png/heimdall-light.png and b/png/heimdall-light.png differ diff --git a/png/heimdall.png b/png/heimdall.png index 3f093611..ec1e3f4e 100644 Binary files a/png/heimdall.png and b/png/heimdall.png differ diff --git a/png/helium-token.png b/png/helium-token.png index 51ddb216..01b87496 100644 Binary files a/png/helium-token.png and b/png/helium-token.png differ diff --git a/png/hetzner.png b/png/hetzner.png index d50d3123..e3e6d2b4 100644 Binary files a/png/hetzner.png and b/png/hetzner.png differ diff --git a/png/hexo.png b/png/hexo.png index ccc16cac..2373f650 100644 Binary files a/png/hexo.png and b/png/hexo.png differ diff --git a/png/hikvision.png b/png/hikvision.png index a02759d7..e32dfa2a 100644 Binary files a/png/hikvision.png and b/png/hikvision.png differ diff --git a/png/homarr.png b/png/homarr.png index 7f72e254..69a7207b 100644 Binary files a/png/homarr.png and b/png/homarr.png differ diff --git a/png/home-assistant-alt.png b/png/home-assistant-alt.png index f555b14f..5a790e96 100644 Binary files a/png/home-assistant-alt.png and b/png/home-assistant-alt.png differ diff --git a/png/home-assistant.png b/png/home-assistant.png index 8f4df25f..863d0126 100644 Binary files a/png/home-assistant.png and b/png/home-assistant.png differ diff --git a/png/homebox.png b/png/homebox.png index 692be077..00f96992 100644 Binary files a/png/homebox.png and b/png/homebox.png differ diff --git a/png/homebridge.png b/png/homebridge.png index d573946b..f4b6c952 100644 Binary files a/png/homebridge.png and b/png/homebridge.png differ diff --git a/png/homepage.png b/png/homepage.png index e38b9a80..7ce16afa 100644 Binary files a/png/homepage.png and b/png/homepage.png differ diff --git a/png/homer.png b/png/homer.png index 5019ded3..a0d752a0 100644 Binary files a/png/homer.png and b/png/homer.png differ diff --git a/png/homeseer.png b/png/homeseer.png index 244f8524..12b6af8a 100644 Binary files a/png/homeseer.png and b/png/homeseer.png differ diff --git a/png/honeygain.png b/png/honeygain.png index 1744309b..119482f6 100644 Binary files a/png/honeygain.png and b/png/honeygain.png differ diff --git a/png/hoobs.png b/png/hoobs.png index c1f3db51..ad99cbc1 100644 Binary files a/png/hoobs.png and b/png/hoobs.png differ diff --git a/png/hoppscotch.png b/png/hoppscotch.png index 8b019cbd..4755c30c 100644 Binary files a/png/hoppscotch.png and b/png/hoppscotch.png differ diff --git a/png/hotio.png b/png/hotio.png index 1767daf6..1a234545 100644 Binary files a/png/hotio.png and b/png/hotio.png differ diff --git a/png/hp.png b/png/hp.png index f7ba91ab..5e92f501 100644 Binary files a/png/hp.png and b/png/hp.png differ diff --git a/png/html.png b/png/html.png index 1a62c941..8369a79e 100644 Binary files a/png/html.png and b/png/html.png differ diff --git a/png/huawei.png b/png/huawei.png index 278a3a5b..baaf6842 100644 Binary files a/png/huawei.png and b/png/huawei.png differ diff --git a/png/hubitat.png b/png/hubitat.png index 0331e91f..3dfb3e0c 100644 Binary files a/png/hubitat.png and b/png/hubitat.png differ diff --git a/png/hugging-face.png b/png/hugging-face.png new file mode 100644 index 00000000..576ed438 Binary files /dev/null and b/png/hugging-face.png differ diff --git a/png/huginn.png b/png/huginn.png index 8e1bc8d1..5a8e43b3 100644 Binary files a/png/huginn.png and b/png/huginn.png differ diff --git a/png/hugo.png b/png/hugo.png index b005583e..852255d4 100644 Binary files a/png/hugo.png and b/png/hugo.png differ diff --git a/png/humhub.png b/png/humhub.png index 158077a9..1c7aca47 100644 Binary files a/png/humhub.png and b/png/humhub.png differ diff --git a/png/hydra.png b/png/hydra.png index c9503e39..796c8203 100644 Binary files a/png/hydra.png and b/png/hydra.png differ diff --git a/png/hyperion.png b/png/hyperion.png index 25f93461..de1be8bb 100644 Binary files a/png/hyperion.png and b/png/hyperion.png differ diff --git a/png/icecast.png b/png/icecast.png index e2b7ae76..ec3a2fb0 100644 Binary files a/png/icecast.png and b/png/icecast.png differ diff --git a/png/icinga.png b/png/icinga.png index 43d77c64..21a37e1f 100644 Binary files a/png/icinga.png and b/png/icinga.png differ diff --git a/png/idrac.png b/png/idrac.png index 99a96521..61f8ec1a 100644 Binary files a/png/idrac.png and b/png/idrac.png differ diff --git a/png/ihatemoney.png b/png/ihatemoney.png index 4b2235e1..748f67af 100644 Binary files a/png/ihatemoney.png and b/png/ihatemoney.png differ diff --git a/png/ilo.png b/png/ilo.png index f7ba91ab..5e92f501 100644 Binary files a/png/ilo.png and b/png/ilo.png differ diff --git a/png/immich.png b/png/immich.png index 3dc91512..eb278c01 100644 Binary files a/png/immich.png and b/png/immich.png differ diff --git a/png/influxdb.png b/png/influxdb.png index 09581660..8d709bd8 100644 Binary files a/png/influxdb.png and b/png/influxdb.png differ diff --git a/png/infoblox.png b/png/infoblox.png index 5d63d2a3..58b36434 100644 Binary files a/png/infoblox.png and b/png/infoblox.png differ diff --git a/png/insanelymac.png b/png/insanelymac.png index 82e66a4e..e7268cec 100644 Binary files a/png/insanelymac.png and b/png/insanelymac.png differ diff --git a/png/instagram.png b/png/instagram.png index 9730d0c0..7ec1fc2c 100644 Binary files a/png/instagram.png and b/png/instagram.png differ diff --git a/png/inventree.png b/png/inventree.png index a06984a2..2c8ab4f2 100644 Binary files a/png/inventree.png and b/png/inventree.png differ diff --git a/png/invidious.png b/png/invidious.png index aae76b3f..8759a81e 100644 Binary files a/png/invidious.png and b/png/invidious.png differ diff --git a/png/invisioncommunity.png b/png/invisioncommunity.png index 1d5e9398..432bced4 100644 Binary files a/png/invisioncommunity.png and b/png/invisioncommunity.png differ diff --git a/png/invoiceninja-light.png b/png/invoiceninja-light.png index 4c9c32db..2462c827 100644 Binary files a/png/invoiceninja-light.png and b/png/invoiceninja-light.png differ diff --git a/png/invoiceninja.png b/png/invoiceninja.png index 06be4022..a0e3c0e5 100644 Binary files a/png/invoiceninja.png and b/png/invoiceninja.png differ diff --git a/png/iobroker.png b/png/iobroker.png index d4d5a860..2e82779e 100644 Binary files a/png/iobroker.png and b/png/iobroker.png differ diff --git a/png/ionos-light.png b/png/ionos-light.png index c99dafff..828e429f 100644 Binary files a/png/ionos-light.png and b/png/ionos-light.png differ diff --git a/png/ionos.png b/png/ionos.png index 98e63fdc..2df5611d 100644 Binary files a/png/ionos.png and b/png/ionos.png differ diff --git a/png/ipboard.png b/png/ipboard.png index 1d5e9398..432bced4 100644 Binary files a/png/ipboard.png and b/png/ipboard.png differ diff --git a/png/ipcamtalk.png b/png/ipcamtalk.png index 4fee0f37..83417d43 100644 Binary files a/png/ipcamtalk.png and b/png/ipcamtalk.png differ diff --git a/png/ipfs.png b/png/ipfs.png index 7c667cec..b4d4f547 100644 Binary files a/png/ipfs.png and b/png/ipfs.png differ diff --git a/png/irc.png b/png/irc.png index 1a9ad9da..517d61bd 100644 Binary files a/png/irc.png and b/png/irc.png differ diff --git a/png/iredmail.png b/png/iredmail.png index 8e22bb97..528c9265 100644 Binary files a/png/iredmail.png and b/png/iredmail.png differ diff --git a/png/ispconfig.png b/png/ispconfig.png index aef6f998..78dd241e 100644 Binary files a/png/ispconfig.png and b/png/ispconfig.png differ diff --git a/png/ispy.png b/png/ispy.png index 57ddf1af..12ef5110 100644 Binary files a/png/ispy.png and b/png/ispy.png differ diff --git a/png/it-tools-light.png b/png/it-tools-light.png index 04e66f01..3fceaafb 100644 Binary files a/png/it-tools-light.png and b/png/it-tools-light.png differ diff --git a/png/it-tools.png b/png/it-tools.png index add59843..2cd951f8 100644 Binary files a/png/it-tools.png and b/png/it-tools.png differ diff --git a/png/jackett-light.png b/png/jackett-light.png index aaef1f14..49e2d04f 100644 Binary files a/png/jackett-light.png and b/png/jackett-light.png differ diff --git a/png/jackett.png b/png/jackett.png index 98430a64..2745770a 100644 Binary files a/png/jackett.png and b/png/jackett.png differ diff --git a/png/jaeger.png b/png/jaeger.png index fc4564cf..fa54aade 100644 Binary files a/png/jaeger.png and b/png/jaeger.png differ diff --git a/png/jamstack.png b/png/jamstack.png index 6b4ab540..50ae3ed5 100644 Binary files a/png/jamstack.png and b/png/jamstack.png differ diff --git a/png/java.png b/png/java.png index 8814061a..946d1b5c 100644 Binary files a/png/java.png and b/png/java.png differ diff --git a/png/javascript.png b/png/javascript.png index 15f61b3a..380eb208 100644 Binary files a/png/javascript.png and b/png/javascript.png differ diff --git a/png/jdownloader.png b/png/jdownloader.png index d8ff90d4..5c90cf76 100644 Binary files a/png/jdownloader.png and b/png/jdownloader.png differ diff --git a/png/jdownloader2.png b/png/jdownloader2.png index d8ff90d4..5c90cf76 100644 Binary files a/png/jdownloader2.png and b/png/jdownloader2.png differ diff --git a/png/jeedom.png b/png/jeedom.png index 2bb88b8f..dff459bf 100644 Binary files a/png/jeedom.png and b/png/jeedom.png differ diff --git a/png/jekyll.png b/png/jekyll.png index 82d936c4..c8626e7a 100644 Binary files a/png/jekyll.png and b/png/jekyll.png differ diff --git a/png/jellyfin-vue.png b/png/jellyfin-vue.png index c8b4abc3..71fbd057 100644 Binary files a/png/jellyfin-vue.png and b/png/jellyfin-vue.png differ diff --git a/png/jellyfin.png b/png/jellyfin.png index dca82aa5..c4a62d5c 100644 Binary files a/png/jellyfin.png and b/png/jellyfin.png differ diff --git a/png/jelu.png b/png/jelu.png index 9cef00ab..bbc0ce06 100644 Binary files a/png/jelu.png and b/png/jelu.png differ diff --git a/png/jenkins.png b/png/jenkins.png index 2e1661fe..aa090e6a 100644 Binary files a/png/jenkins.png and b/png/jenkins.png differ diff --git a/png/jetbrains-fleet.png b/png/jetbrains-fleet.png index f57882dc..856689b5 100644 Binary files a/png/jetbrains-fleet.png and b/png/jetbrains-fleet.png differ diff --git a/png/jetbrains-youtrack.png b/png/jetbrains-youtrack.png index 25211208..37adee2e 100644 Binary files a/png/jetbrains-youtrack.png and b/png/jetbrains-youtrack.png differ diff --git a/png/jio.png b/png/jio.png index 96ad3982..cb6208ed 100644 Binary files a/png/jio.png and b/png/jio.png differ diff --git a/png/jira.png b/png/jira.png index 0e5abc8a..6afcb136 100644 Binary files a/png/jira.png and b/png/jira.png differ diff --git a/png/jitsi-meet.png b/png/jitsi-meet.png index b2305688..ab7e203a 100644 Binary files a/png/jitsi-meet.png and b/png/jitsi-meet.png differ diff --git a/png/jitsi.png b/png/jitsi.png index 4fd018a5..496f81e0 100644 Binary files a/png/jitsi.png and b/png/jitsi.png differ diff --git a/png/joal.png b/png/joal.png index 56693547..18bf7605 100644 Binary files a/png/joal.png and b/png/joal.png differ diff --git a/png/joomla.png b/png/joomla.png index 63919301..0fd5c762 100644 Binary files a/png/joomla.png and b/png/joomla.png differ diff --git a/png/joplin.png b/png/joplin.png index 0422e5cf..1ec38101 100644 Binary files a/png/joplin.png and b/png/joplin.png differ diff --git a/png/julia.png b/png/julia.png index 2e419fa1..211de472 100644 Binary files a/png/julia.png and b/png/julia.png differ diff --git a/png/jupyter.png b/png/jupyter.png index c439bcd6..5bb7d778 100644 Binary files a/png/jupyter.png and b/png/jupyter.png differ diff --git a/png/kaizoku.png b/png/kaizoku.png index 5bdbe936..dc1770ca 100644 Binary files a/png/kaizoku.png and b/png/kaizoku.png differ diff --git a/png/kamatera.png b/png/kamatera.png index 6f3c6b39..4a77c782 100644 Binary files a/png/kamatera.png and b/png/kamatera.png differ diff --git a/png/kapacitor.png b/png/kapacitor.png index 42970251..c1e97001 100644 Binary files a/png/kapacitor.png and b/png/kapacitor.png differ diff --git a/png/kasm-workspaces.png b/png/kasm-workspaces.png index 868824ce..d255e1d3 100644 Binary files a/png/kasm-workspaces.png and b/png/kasm-workspaces.png differ diff --git a/png/kasm.png b/png/kasm.png index 868824ce..d255e1d3 100644 Binary files a/png/kasm.png and b/png/kasm.png differ diff --git a/png/kaufland.png b/png/kaufland.png index 27a95177..da290c50 100644 Binary files a/png/kaufland.png and b/png/kaufland.png differ diff --git a/png/kavita.png b/png/kavita.png index d08f624a..6ea448d2 100644 Binary files a/png/kavita.png and b/png/kavita.png differ diff --git a/png/keila.png b/png/keila.png index 259192b5..69effc41 100644 Binary files a/png/keila.png and b/png/keila.png differ diff --git a/png/kerberos.png b/png/kerberos.png index 8f50322d..d8cd2a40 100644 Binary files a/png/kerberos.png and b/png/kerberos.png differ diff --git a/png/keycloak.png b/png/keycloak.png index 06124c2b..c8bf3fe8 100644 Binary files a/png/keycloak.png and b/png/keycloak.png differ diff --git a/png/kibana.png b/png/kibana.png index 167ea1d3..658569e8 100644 Binary files a/png/kibana.png and b/png/kibana.png differ diff --git a/png/kimai.png b/png/kimai.png index fe419747..a320fedd 100644 Binary files a/png/kimai.png and b/png/kimai.png differ diff --git a/png/kinto.png b/png/kinto.png index a9c5936c..a7e3eee9 100644 Binary files a/png/kinto.png and b/png/kinto.png differ diff --git a/png/kitana.png b/png/kitana.png index 32b01a45..cdd8323d 100644 Binary files a/png/kitana.png and b/png/kitana.png differ diff --git a/png/kitchenowl.png b/png/kitchenowl.png index d6622fb5..5a666edb 100644 Binary files a/png/kitchenowl.png and b/png/kitchenowl.png differ diff --git a/png/kiwix-light.png b/png/kiwix-light.png index ce8ac68f..e310fb94 100644 Binary files a/png/kiwix-light.png and b/png/kiwix-light.png differ diff --git a/png/kiwix.png b/png/kiwix.png index a95b3da1..c6f87954 100644 Binary files a/png/kiwix.png and b/png/kiwix.png differ diff --git a/png/ko-fi.png b/png/ko-fi.png index e4cd6918..12e06a99 100644 Binary files a/png/ko-fi.png and b/png/ko-fi.png differ diff --git a/png/kodi.png b/png/kodi.png index 4ede7b9e..0b860002 100644 Binary files a/png/kodi.png and b/png/kodi.png differ diff --git a/png/koel.png b/png/koel.png index 440db7c8..78611564 100644 Binary files a/png/koel.png and b/png/koel.png differ diff --git a/png/koillection.png b/png/koillection.png index 3f9b465c..5bb8023d 100644 Binary files a/png/koillection.png and b/png/koillection.png differ diff --git a/png/komga.png b/png/komga.png index 945b00f6..d853224d 100644 Binary files a/png/komga.png and b/png/komga.png differ diff --git a/png/kopia.png b/png/kopia.png index e4f7640a..fc430caf 100644 Binary files a/png/kopia.png and b/png/kopia.png differ diff --git a/png/kotlin.png b/png/kotlin.png index 556cd0e3..29c12085 100644 Binary files a/png/kotlin.png and b/png/kotlin.png differ diff --git a/png/krusader.png b/png/krusader.png index 53a2647c..48fd236e 100644 Binary files a/png/krusader.png and b/png/krusader.png differ diff --git a/png/kubernetes-dashboard.png b/png/kubernetes-dashboard.png index f010e009..bf488876 100644 Binary files a/png/kubernetes-dashboard.png and b/png/kubernetes-dashboard.png differ diff --git a/png/kubernetes.png b/png/kubernetes.png index f010e009..bf488876 100644 Binary files a/png/kubernetes.png and b/png/kubernetes.png differ diff --git a/png/kutt.png b/png/kutt.png index 5c7c0a69..740b331d 100644 Binary files a/png/kutt.png and b/png/kutt.png differ diff --git a/png/lanraragi.png b/png/lanraragi.png index c5437719..cc6d8830 100644 Binary files a/png/lanraragi.png and b/png/lanraragi.png differ diff --git a/png/lark.png b/png/lark.png index 039af1b8..8c7865ef 100644 Binary files a/png/lark.png and b/png/lark.png differ diff --git a/png/lazylibrarian.png b/png/lazylibrarian.png index 27996801..e504fa1b 100644 Binary files a/png/lazylibrarian.png and b/png/lazylibrarian.png differ diff --git a/png/leanote.png b/png/leanote.png index 365b685a..d1b38374 100644 Binary files a/png/leanote.png and b/png/leanote.png differ diff --git a/png/leantime.png b/png/leantime.png index 7780d78c..9673b4f4 100644 Binary files a/png/leantime.png and b/png/leantime.png differ diff --git a/png/lemonldap-ng.png b/png/lemonldap-ng.png index 4f7bb803..dbf27180 100644 Binary files a/png/lemonldap-ng.png and b/png/lemonldap-ng.png differ diff --git a/png/lets-encrypt.png b/png/lets-encrypt.png index 4bf8f711..43c9a789 100644 Binary files a/png/lets-encrypt.png and b/png/lets-encrypt.png differ diff --git a/png/libreddit.png b/png/libreddit.png index 092aadf3..e42ed44b 100644 Binary files a/png/libreddit.png and b/png/libreddit.png differ diff --git a/png/librenms-light.png b/png/librenms-light.png index fa4b96a8..c2a1bb16 100644 Binary files a/png/librenms-light.png and b/png/librenms-light.png differ diff --git a/png/librenms.png b/png/librenms.png index 7f16f333..6c72502c 100644 Binary files a/png/librenms.png and b/png/librenms.png differ diff --git a/png/libreoffice.png b/png/libreoffice.png index e3cc30b8..551676a5 100644 Binary files a/png/libreoffice.png and b/png/libreoffice.png differ diff --git a/png/librephotos-light.png b/png/librephotos-light.png index 3ee6b5b5..d81407f1 100644 Binary files a/png/librephotos-light.png and b/png/librephotos-light.png differ diff --git a/png/librephotos.png b/png/librephotos.png index 16c2f8ba..3b837c16 100644 Binary files a/png/librephotos.png and b/png/librephotos.png differ diff --git a/png/librespeed.png b/png/librespeed.png index fa327ccf..ea06dfb2 100644 Binary files a/png/librespeed.png and b/png/librespeed.png differ diff --git a/png/librex.png b/png/librex.png index fe262430..88a1cabd 100644 Binary files a/png/librex.png and b/png/librex.png differ diff --git a/png/lidarr.png b/png/lidarr.png index 9488b14c..3ec663b7 100644 Binary files a/png/lidarr.png and b/png/lidarr.png differ diff --git a/png/lidl.png b/png/lidl.png index 4d9bdcfd..96d73fda 100644 Binary files a/png/lidl.png and b/png/lidl.png differ diff --git a/png/lightning-terminal.png b/png/lightning-terminal.png index a7d6aef4..e89dc8db 100644 Binary files a/png/lightning-terminal.png and b/png/lightning-terminal.png differ diff --git a/png/lighttpd.png b/png/lighttpd.png index 9f162931..605ed0be 100644 Binary files a/png/lighttpd.png and b/png/lighttpd.png differ diff --git a/png/linkace.png b/png/linkace.png index 80699f7e..f2d96c7d 100644 Binary files a/png/linkace.png and b/png/linkace.png differ diff --git a/png/linkding.png b/png/linkding.png index 4c55a6e3..2614c02b 100644 Binary files a/png/linkding.png and b/png/linkding.png differ diff --git a/png/linkedin.png b/png/linkedin.png index e4f39ea0..1d2bdfc3 100644 Binary files a/png/linkedin.png and b/png/linkedin.png differ diff --git a/png/linksys.png b/png/linksys.png index 54d7ed34..048fea3a 100644 Binary files a/png/linksys.png and b/png/linksys.png differ diff --git a/png/linode.png b/png/linode.png index 57287b87..5a8dd83f 100644 Binary files a/png/linode.png and b/png/linode.png differ diff --git a/png/linux-mint.png b/png/linux-mint.png index 8ece3ce7..2164fafd 100644 Binary files a/png/linux-mint.png and b/png/linux-mint.png differ diff --git a/png/linuxserver-io.png b/png/linuxserver-io.png index e81a098b..fae551e9 100644 Binary files a/png/linuxserver-io.png and b/png/linuxserver-io.png differ diff --git a/png/listmonk.png b/png/listmonk.png index b1debbe9..4ad0c313 100644 Binary files a/png/listmonk.png and b/png/listmonk.png differ diff --git a/png/littlelink-custom.png b/png/littlelink-custom.png index 0bbaeaac..0c4632ec 100644 Binary files a/png/littlelink-custom.png and b/png/littlelink-custom.png differ diff --git a/png/lnbits.png b/png/lnbits.png index 9536047c..a17bb246 100644 Binary files a/png/lnbits.png and b/png/lnbits.png differ diff --git a/png/logitech-gaming.png b/png/logitech-gaming.png index 32fce7fa..836fed63 100644 Binary files a/png/logitech-gaming.png and b/png/logitech-gaming.png differ diff --git a/png/logitech-legacy-light.png b/png/logitech-legacy-light.png index 886b5476..2455e213 100644 Binary files a/png/logitech-legacy-light.png and b/png/logitech-legacy-light.png differ diff --git a/png/logitech-legacy.png b/png/logitech-legacy.png index 984b8534..9847cff4 100644 Binary files a/png/logitech-legacy.png and b/png/logitech-legacy.png differ diff --git a/png/logitech-light.png b/png/logitech-light.png index 0c689f65..77ff2e3e 100644 Binary files a/png/logitech-light.png and b/png/logitech-light.png differ diff --git a/png/logitech.png b/png/logitech.png index 0599bd49..5528b323 100644 Binary files a/png/logitech.png and b/png/logitech.png differ diff --git a/png/logstash.png b/png/logstash.png index 1242bf88..c0285cc0 100644 Binary files a/png/logstash.png and b/png/logstash.png differ diff --git a/png/loki.png b/png/loki.png index 462dc6ce..9ebe1342 100644 Binary files a/png/loki.png and b/png/loki.png differ diff --git a/png/longhorn.png b/png/longhorn.png index 9a26c88c..43fc534e 100644 Binary files a/png/longhorn.png and b/png/longhorn.png differ diff --git a/png/lsio.png b/png/lsio.png index e81a098b..fae551e9 100644 Binary files a/png/lsio.png and b/png/lsio.png differ diff --git a/png/lua.png b/png/lua.png index 9314b7ce..b69f73b0 100644 Binary files a/png/lua.png and b/png/lua.png differ diff --git a/png/lychee.png b/png/lychee.png index ba4943eb..aab2206e 100644 Binary files a/png/lychee.png and b/png/lychee.png differ diff --git a/png/mailcow.png b/png/mailcow.png index 10571fff..289901d2 100644 Binary files a/png/mailcow.png and b/png/mailcow.png differ diff --git a/png/mailcowsogo.png b/png/mailcowsogo.png index f4d60add..01096789 100644 Binary files a/png/mailcowsogo.png and b/png/mailcowsogo.png differ diff --git a/png/mailhog.png b/png/mailhog.png index 5e690b8d..4b703f14 100644 Binary files a/png/mailhog.png and b/png/mailhog.png differ diff --git a/png/mailinabox.png b/png/mailinabox.png index e45ef7ab..f127eac3 100644 Binary files a/png/mailinabox.png and b/png/mailinabox.png differ diff --git a/png/mailu.png b/png/mailu.png index 9550b2ee..2f667eff 100644 Binary files a/png/mailu.png and b/png/mailu.png differ diff --git a/png/mak.png b/png/mak.png index e6113d77..fd43faf2 100644 Binary files a/png/mak.png and b/png/mak.png differ diff --git a/png/makemkv.png b/png/makemkv.png index 5017924d..47e3f463 100644 Binary files a/png/makemkv.png and b/png/makemkv.png differ diff --git a/png/manjaro-linux.png b/png/manjaro-linux.png index 3880f55b..5051a77e 100644 Binary files a/png/manjaro-linux.png and b/png/manjaro-linux.png differ diff --git a/png/mantisbt.png b/png/mantisbt.png index d6832f96..f5f6ac22 100644 Binary files a/png/mantisbt.png and b/png/mantisbt.png differ diff --git a/png/maptiler.png b/png/maptiler.png index 2710018a..e6f10867 100644 Binary files a/png/maptiler.png and b/png/maptiler.png differ diff --git a/png/marginalia.png b/png/marginalia.png index 355825e7..adffebc3 100644 Binary files a/png/marginalia.png and b/png/marginalia.png differ diff --git a/png/mariadb.png b/png/mariadb.png index 07b6c378..d76fcee2 100644 Binary files a/png/mariadb.png and b/png/mariadb.png differ diff --git a/png/mastodon.png b/png/mastodon.png index dea96d5b..748c8538 100644 Binary files a/png/mastodon.png and b/png/mastodon.png differ diff --git a/png/matomo.png b/png/matomo.png index d29b220a..b80d74a3 100644 Binary files a/png/matomo.png and b/png/matomo.png differ diff --git a/png/matrix-light.png b/png/matrix-light.png index a84f877b..1c889ae8 100644 Binary files a/png/matrix-light.png and b/png/matrix-light.png differ diff --git a/png/matrix-synapse-light.png b/png/matrix-synapse-light.png index f51ee2a5..dc355e69 100644 Binary files a/png/matrix-synapse-light.png and b/png/matrix-synapse-light.png differ diff --git a/png/matrix-synapse.png b/png/matrix-synapse.png index 8bc5808b..f6aea99a 100644 Binary files a/png/matrix-synapse.png and b/png/matrix-synapse.png differ diff --git a/png/matrix.png b/png/matrix.png index f650c148..ad1bd95d 100644 Binary files a/png/matrix.png and b/png/matrix.png differ diff --git a/png/mattermost.png b/png/mattermost.png index bf14a0db..8d0dac47 100644 Binary files a/png/mattermost.png and b/png/mattermost.png differ diff --git a/png/mautic-light.png b/png/mautic-light.png index 4017be64..ad4ad56c 100644 Binary files a/png/mautic-light.png and b/png/mautic-light.png differ diff --git a/png/mautic.png b/png/mautic.png index 0b2d74de..2d396058 100644 Binary files a/png/mautic.png and b/png/mautic.png differ diff --git a/png/mayan-edms.png b/png/mayan-edms.png index 095e8ce4..efd6298f 100644 Binary files a/png/mayan-edms.png and b/png/mayan-edms.png differ diff --git a/png/mayan-light.png b/png/mayan-light.png index dd1cb9e7..71c9eea7 100644 Binary files a/png/mayan-light.png and b/png/mayan-light.png differ diff --git a/png/mealie.png b/png/mealie.png index 87d2a736..6a67beb4 100644 Binary files a/png/mealie.png and b/png/mealie.png differ diff --git a/png/mediathekview.png b/png/mediathekview.png index c47f53f1..47db9aaf 100644 Binary files a/png/mediathekview.png and b/png/mediathekview.png differ diff --git a/png/mediawiki.png b/png/mediawiki.png index 1367c52b..df3d96e6 100644 Binary files a/png/mediawiki.png and b/png/mediawiki.png differ diff --git a/png/mega-nz.png b/png/mega-nz.png index f927450d..e977c456 100644 Binary files a/png/mega-nz.png and b/png/mega-nz.png differ diff --git a/png/memos.png b/png/memos.png index 26f1f29e..19e6cd8d 100644 Binary files a/png/memos.png and b/png/memos.png differ diff --git a/png/mempool.png b/png/mempool.png index 522b846d..80066021 100644 Binary files a/png/mempool.png and b/png/mempool.png differ diff --git a/png/meraki.png b/png/meraki.png index 05fec18a..a62baa16 100644 Binary files a/png/meraki.png and b/png/meraki.png differ diff --git a/png/mercusys.png b/png/mercusys.png index 180cb368..10698725 100644 Binary files a/png/mercusys.png and b/png/mercusys.png differ diff --git a/png/meshcentral.png b/png/meshcentral.png index 975b54c1..0c3a7a37 100644 Binary files a/png/meshcentral.png and b/png/meshcentral.png differ diff --git a/png/meta.png b/png/meta.png index dc5a57f6..7219e5c1 100644 Binary files a/png/meta.png and b/png/meta.png differ diff --git a/png/metabase.png b/png/metabase.png index e24609d0..8249656f 100644 Binary files a/png/metabase.png and b/png/metabase.png differ diff --git a/png/metube.png b/png/metube.png index 905235b0..af28c27e 100644 Binary files a/png/metube.png and b/png/metube.png differ diff --git a/png/microbin.png b/png/microbin.png index f1f37ed5..83852035 100644 Binary files a/png/microbin.png and b/png/microbin.png differ diff --git a/png/microsoft-office.png b/png/microsoft-office.png index 6924b3d9..33516d92 100644 Binary files a/png/microsoft-office.png and b/png/microsoft-office.png differ diff --git a/png/microsoft-todo.png b/png/microsoft-todo.png index 766e6c87..3455bf22 100644 Binary files a/png/microsoft-todo.png and b/png/microsoft-todo.png differ diff --git a/png/microsoft.png b/png/microsoft.png index 791e3e2c..80074d90 100644 Binary files a/png/microsoft.png and b/png/microsoft.png differ diff --git a/png/midjourney-light.png b/png/midjourney-light.png new file mode 100644 index 00000000..f8a19cd6 Binary files /dev/null and b/png/midjourney-light.png differ diff --git a/png/midjourney.png b/png/midjourney.png new file mode 100644 index 00000000..6d2ffd93 Binary files /dev/null and b/png/midjourney.png differ diff --git a/png/mikrotik.png b/png/mikrotik.png index 078c627a..e550ade1 100644 Binary files a/png/mikrotik.png and b/png/mikrotik.png differ diff --git a/png/minecraft.png b/png/minecraft.png index 1b57cfed..196cf16d 100644 Binary files a/png/minecraft.png and b/png/minecraft.png differ diff --git a/png/mineos.png b/png/mineos.png index afd06005..e6d343d8 100644 Binary files a/png/mineos.png and b/png/mineos.png differ diff --git a/png/miniflux-light.png b/png/miniflux-light.png index ffbb94d8..a19be00b 100644 Binary files a/png/miniflux-light.png and b/png/miniflux-light.png differ diff --git a/png/miniflux.png b/png/miniflux.png index c1e920bb..3cfa9fd1 100644 Binary files a/png/miniflux.png and b/png/miniflux.png differ diff --git a/png/minimserver.png b/png/minimserver.png index 38a4dfc0..c9b72c17 100644 Binary files a/png/minimserver.png and b/png/minimserver.png differ diff --git a/png/minio-light.png b/png/minio-light.png index 34a993c4..10bcb35e 100644 Binary files a/png/minio-light.png and b/png/minio-light.png differ diff --git a/png/minio.png b/png/minio.png index 98a78c74..902099fd 100644 Binary files a/png/minio.png and b/png/minio.png differ diff --git a/png/mkvtoolnix.png b/png/mkvtoolnix.png index 19944dc3..e74cce7f 100644 Binary files a/png/mkvtoolnix.png and b/png/mkvtoolnix.png differ diff --git a/png/mobaxterm.png b/png/mobaxterm.png index 62b97723..9da4040e 100644 Binary files a/png/mobaxterm.png and b/png/mobaxterm.png differ diff --git a/png/mobotix.png b/png/mobotix.png index 8a8de2f1..eb57bd50 100644 Binary files a/png/mobotix.png and b/png/mobotix.png differ diff --git a/png/modrinth.png b/png/modrinth.png index c2f2902d..b9064ea7 100644 Binary files a/png/modrinth.png and b/png/modrinth.png differ diff --git a/png/mojeek.png b/png/mojeek.png index f060f4bb..71be2516 100644 Binary files a/png/mojeek.png and b/png/mojeek.png differ diff --git a/png/molecule.png b/png/molecule.png index 7249134d..39578483 100644 Binary files a/png/molecule.png and b/png/molecule.png differ diff --git a/png/monero.png b/png/monero.png index 2a544d9f..1b9d76a2 100644 Binary files a/png/monero.png and b/png/monero.png differ diff --git a/png/mongodb.png b/png/mongodb.png index 979e5f3d..ad580016 100644 Binary files a/png/mongodb.png and b/png/mongodb.png differ diff --git a/png/monica.png b/png/monica.png index c63de446..7b69f609 100644 Binary files a/png/monica.png and b/png/monica.png differ diff --git a/png/monit.png b/png/monit.png index f0e0f041..1aa76585 100644 Binary files a/png/monit.png and b/png/monit.png differ diff --git a/png/moodle.png b/png/moodle.png index 13ac74bf..b747f288 100644 Binary files a/png/moodle.png and b/png/moodle.png differ diff --git a/png/motioneye.png b/png/motioneye.png index 08f13ae2..c80c85ff 100644 Binary files a/png/motioneye.png and b/png/motioneye.png differ diff --git a/png/mpm.png b/png/mpm.png index d1642546..e56bd83d 100644 Binary files a/png/mpm.png and b/png/mpm.png differ diff --git a/png/mqtt.png b/png/mqtt.png index f66e2824..ac703e91 100644 Binary files a/png/mqtt.png and b/png/mqtt.png differ diff --git a/png/mstream.png b/png/mstream.png index 5e56d449..27e46f1b 100644 Binary files a/png/mstream.png and b/png/mstream.png differ diff --git a/png/mullvad.png b/png/mullvad.png index 0125aeac..ea3a0b0d 100644 Binary files a/png/mullvad.png and b/png/mullvad.png differ diff --git a/png/mumble.png b/png/mumble.png index 5e353b12..7aa08dab 100644 Binary files a/png/mumble.png and b/png/mumble.png differ diff --git a/png/musicbrainz.png b/png/musicbrainz.png index ecd64f51..91f3eedb 100644 Binary files a/png/musicbrainz.png and b/png/musicbrainz.png differ diff --git a/png/mylar.png b/png/mylar.png index 3a236bbd..b0a391ef 100644 Binary files a/png/mylar.png and b/png/mylar.png differ diff --git a/png/mysql.png b/png/mysql.png index 595bfdf8..9b6b3e4f 100644 Binary files a/png/mysql.png and b/png/mysql.png differ diff --git a/png/n8n.png b/png/n8n.png index 2bc3913e..afa09f66 100644 Binary files a/png/n8n.png and b/png/n8n.png differ diff --git a/png/nagios.png b/png/nagios.png index c812555c..f599bddc 100644 Binary files a/png/nagios.png and b/png/nagios.png differ diff --git a/png/navidrome.png b/png/navidrome.png index 32b217ec..72b40bbb 100644 Binary files a/png/navidrome.png and b/png/navidrome.png differ diff --git a/png/ncore.png b/png/ncore.png index 9691fb2c..010b1c5c 100644 Binary files a/png/ncore.png and b/png/ncore.png differ diff --git a/png/neko-light.png b/png/neko-light.png index 9cc00900..16605e74 100644 Binary files a/png/neko-light.png and b/png/neko-light.png differ diff --git a/png/neko.png b/png/neko.png index b10b72b8..0cad7e97 100644 Binary files a/png/neko.png and b/png/neko.png differ diff --git a/png/neocities.png b/png/neocities.png index d7460702..8023dcaf 100644 Binary files a/png/neocities.png and b/png/neocities.png differ diff --git a/png/netapp.png b/png/netapp.png index facb8b3f..c2e1b22d 100644 Binary files a/png/netapp.png and b/png/netapp.png differ diff --git a/png/netboot.png b/png/netboot.png index 0f60c221..2aaf8f4e 100644 Binary files a/png/netboot.png and b/png/netboot.png differ diff --git a/png/netbox.png b/png/netbox.png index 6eac6b86..f395fe29 100644 Binary files a/png/netbox.png and b/png/netbox.png differ diff --git a/png/netcam-studio.png b/png/netcam-studio.png index 99a55e14..83f15e1c 100644 Binary files a/png/netcam-studio.png and b/png/netcam-studio.png differ diff --git a/png/netdata.png b/png/netdata.png index d3365616..80078cee 100644 Binary files a/png/netdata.png and b/png/netdata.png differ diff --git a/png/netflix.png b/png/netflix.png index 5f5c1d67..304a8332 100644 Binary files a/png/netflix.png and b/png/netflix.png differ diff --git a/png/netgear.png b/png/netgear.png index 43bf932d..d42d2fda 100644 Binary files a/png/netgear.png and b/png/netgear.png differ diff --git a/png/netlify.png b/png/netlify.png index 2d401eca..abed3953 100644 Binary files a/png/netlify.png and b/png/netlify.png differ diff --git a/png/netmaker.png b/png/netmaker.png index e3aec28e..06dfb975 100644 Binary files a/png/netmaker.png and b/png/netmaker.png differ diff --git a/png/netsurf.png b/png/netsurf.png index 70d10f21..1c438e8e 100644 Binary files a/png/netsurf.png and b/png/netsurf.png differ diff --git a/png/network-weathermap.png b/png/network-weathermap.png index a589d2a1..401b873c 100644 Binary files a/png/network-weathermap.png and b/png/network-weathermap.png differ diff --git a/png/newsblur.png b/png/newsblur.png index 871cd0d6..49234c0d 100644 Binary files a/png/newsblur.png and b/png/newsblur.png differ diff --git a/png/nextcloud-calendar.png b/png/nextcloud-calendar.png index 9d462743..400a8b93 100644 Binary files a/png/nextcloud-calendar.png and b/png/nextcloud-calendar.png differ diff --git a/png/nextcloud-cookbook.png b/png/nextcloud-cookbook.png index 814946a3..cd320f35 100644 Binary files a/png/nextcloud-cookbook.png and b/png/nextcloud-cookbook.png differ diff --git a/png/nextcloud-deck.png b/png/nextcloud-deck.png index 211dac0e..301912b1 100644 Binary files a/png/nextcloud-deck.png and b/png/nextcloud-deck.png differ diff --git a/png/nextcloud-news.png b/png/nextcloud-news.png index 100df2f1..bc3d688e 100644 Binary files a/png/nextcloud-news.png and b/png/nextcloud-news.png differ diff --git a/png/nextcloud-notes.png b/png/nextcloud-notes.png index ca87dffc..2fccfd7b 100644 Binary files a/png/nextcloud-notes.png and b/png/nextcloud-notes.png differ diff --git a/png/nextcloud-photos.png b/png/nextcloud-photos.png index 5897af79..183d245a 100644 Binary files a/png/nextcloud-photos.png and b/png/nextcloud-photos.png differ diff --git a/png/nextcloud-talk.png b/png/nextcloud-talk.png index a93a8402..8456e27c 100644 Binary files a/png/nextcloud-talk.png and b/png/nextcloud-talk.png differ diff --git a/png/nextcloud-timemanager.png b/png/nextcloud-timemanager.png index 9b94953b..92d943a9 100644 Binary files a/png/nextcloud-timemanager.png and b/png/nextcloud-timemanager.png differ diff --git a/png/nextcloud.png b/png/nextcloud.png index 0b31617d..7adc9c83 100644 Binary files a/png/nextcloud.png and b/png/nextcloud.png differ diff --git a/png/nextdns.png b/png/nextdns.png index 7e94ca6b..a3db99c5 100644 Binary files a/png/nextdns.png and b/png/nextdns.png differ diff --git a/png/nextjs.png b/png/nextjs.png index ca63aece..fdc26757 100644 Binary files a/png/nextjs.png and b/png/nextjs.png differ diff --git a/png/nginx-proxy-manager.png b/png/nginx-proxy-manager.png index efbab915..95dad95e 100644 Binary files a/png/nginx-proxy-manager.png and b/png/nginx-proxy-manager.png differ diff --git a/png/nginx.png b/png/nginx.png index 66a34beb..639fe197 100644 Binary files a/png/nginx.png and b/png/nginx.png differ diff --git a/png/nitter.png b/png/nitter.png index fedc2e09..c04a90e3 100644 Binary files a/png/nitter.png and b/png/nitter.png differ diff --git a/png/nocodb.png b/png/nocodb.png index 76c8b383..3a007de8 100644 Binary files a/png/nocodb.png and b/png/nocodb.png differ diff --git a/png/node-red.png b/png/node-red.png index 1ac0c134..3b77a8ad 100644 Binary files a/png/node-red.png and b/png/node-red.png differ diff --git a/png/nodejs-alt.png b/png/nodejs-alt.png index 99231d8c..2462d310 100644 Binary files a/png/nodejs-alt.png and b/png/nodejs-alt.png differ diff --git a/png/nodejs.png b/png/nodejs.png index 808c6e97..e8a2c343 100644 Binary files a/png/nodejs.png and b/png/nodejs.png differ diff --git a/png/nomad.png b/png/nomad.png index 14f5e6d7..37b289de 100644 Binary files a/png/nomad.png and b/png/nomad.png differ diff --git a/png/nomie.png b/png/nomie.png index 73c6ddd9..0c7abf6e 100644 Binary files a/png/nomie.png and b/png/nomie.png differ diff --git a/png/notifiarr.png b/png/notifiarr.png index a02e059c..ffdccd3b 100644 Binary files a/png/notifiarr.png and b/png/notifiarr.png differ diff --git a/png/nowshowing.png b/png/nowshowing.png index 1b1532d6..4a75e2dd 100644 Binary files a/png/nowshowing.png and b/png/nowshowing.png differ diff --git a/png/ntfy-light.png b/png/ntfy-light.png index d20c0751..ee2136b4 100644 Binary files a/png/ntfy-light.png and b/png/ntfy-light.png differ diff --git a/png/ntfy.png b/png/ntfy.png index 5f6edf7d..802ef61a 100644 Binary files a/png/ntfy.png and b/png/ntfy.png differ diff --git a/png/ntop.png b/png/ntop.png index 35bb216c..bd4c64d0 100644 Binary files a/png/ntop.png and b/png/ntop.png differ diff --git a/png/nxlog.png b/png/nxlog.png index 1c29784d..f6894416 100644 Binary files a/png/nxlog.png and b/png/nxlog.png differ diff --git a/png/nzbhydra.png b/png/nzbhydra.png index 43e21578..3ae78c6b 100644 Binary files a/png/nzbhydra.png and b/png/nzbhydra.png differ diff --git a/png/nzbhydra2-light.png b/png/nzbhydra2-light.png index 0d561e47..b9a7c5ae 100644 Binary files a/png/nzbhydra2-light.png and b/png/nzbhydra2-light.png differ diff --git a/png/nzbhydra2.png b/png/nzbhydra2.png index 335f8b00..6dcb263f 100644 Binary files a/png/nzbhydra2.png and b/png/nzbhydra2.png differ diff --git a/png/obico.png b/png/obico.png index d285a469..2064a46b 100644 Binary files a/png/obico.png and b/png/obico.png differ diff --git a/png/obitalk.png b/png/obitalk.png index 8d45cb65..787061ed 100644 Binary files a/png/obitalk.png and b/png/obitalk.png differ diff --git a/png/observium.png b/png/observium.png index 149296e4..cb426d95 100644 Binary files a/png/observium.png and b/png/observium.png differ diff --git a/png/obsidian.png b/png/obsidian.png index 3be08210..6ac8fac1 100644 Binary files a/png/obsidian.png and b/png/obsidian.png differ diff --git a/png/octoeverywhere.png b/png/octoeverywhere.png index fe80068b..717cdecc 100644 Binary files a/png/octoeverywhere.png and b/png/octoeverywhere.png differ diff --git a/png/octoprint.png b/png/octoprint.png index 107b57a1..623365fa 100644 Binary files a/png/octoprint.png and b/png/octoprint.png differ diff --git a/png/oculus-light.png b/png/oculus-light.png index 4746b250..13ec079e 100644 Binary files a/png/oculus-light.png and b/png/oculus-light.png differ diff --git a/png/oculus.png b/png/oculus.png index 60a30da5..d9ce3a04 100644 Binary files a/png/oculus.png and b/png/oculus.png differ diff --git a/png/office-365.png b/png/office-365.png index f3639940..b719ed30 100644 Binary files a/png/office-365.png and b/png/office-365.png differ diff --git a/png/olivetin.png b/png/olivetin.png index dfa35c2c..4ef39910 100644 Binary files a/png/olivetin.png and b/png/olivetin.png differ diff --git a/png/omada.png b/png/omada.png index 770b87d9..93ed26a1 100644 Binary files a/png/omada.png and b/png/omada.png differ diff --git a/png/ombi.png b/png/ombi.png index e5546658..f4c611b8 100644 Binary files a/png/ombi.png and b/png/ombi.png differ diff --git a/png/omnidb.png b/png/omnidb.png index 82479a1d..afa4d125 100644 Binary files a/png/omnidb.png and b/png/omnidb.png differ diff --git a/png/onedev-light.png b/png/onedev-light.png index c62f08ad..5b79523f 100644 Binary files a/png/onedev-light.png and b/png/onedev-light.png differ diff --git a/png/onedev.png b/png/onedev.png index 7b1a4b04..ea6fb045 100644 Binary files a/png/onedev.png and b/png/onedev.png differ diff --git a/png/onlyoffice.png b/png/onlyoffice.png index 77427faa..eba4f00c 100644 Binary files a/png/onlyoffice.png and b/png/onlyoffice.png differ diff --git a/png/openai-light.png b/png/openai-light.png index 6f76c4f4..65e7a58e 100644 Binary files a/png/openai-light.png and b/png/openai-light.png differ diff --git a/png/openai.png b/png/openai.png index 5b8e9a2b..bbff3092 100644 Binary files a/png/openai.png and b/png/openai.png differ diff --git a/png/openeats.png b/png/openeats.png index a84efc0d..30fb1867 100644 Binary files a/png/openeats.png and b/png/openeats.png differ diff --git a/png/openhab.png b/png/openhab.png index e902d5e4..35b278a5 100644 Binary files a/png/openhab.png and b/png/openhab.png differ diff --git a/png/openmaptiles.png b/png/openmaptiles.png index dd86d8b3..8756f5d8 100644 Binary files a/png/openmaptiles.png and b/png/openmaptiles.png differ diff --git a/png/openmediavault.png b/png/openmediavault.png index 8428d673..707d4175 100644 Binary files a/png/openmediavault.png and b/png/openmediavault.png differ diff --git a/png/openoffice.png b/png/openoffice.png index 44041cd8..f1b680e7 100644 Binary files a/png/openoffice.png and b/png/openoffice.png differ diff --git a/png/openproject.png b/png/openproject.png index a7b96e9a..ad8bcb02 100644 Binary files a/png/openproject.png and b/png/openproject.png differ diff --git a/png/opensearch.png b/png/opensearch.png index eec117f8..dc3d0a2e 100644 Binary files a/png/opensearch.png and b/png/opensearch.png differ diff --git a/png/opensprinkler.png b/png/opensprinkler.png index 31ddfbdd..551ab229 100644 Binary files a/png/opensprinkler.png and b/png/opensprinkler.png differ diff --git a/png/openstreetmap.png b/png/openstreetmap.png index b068c6fe..dd46f68f 100644 Binary files a/png/openstreetmap.png and b/png/openstreetmap.png differ diff --git a/png/opensuse.png b/png/opensuse.png index 511e3cc4..74a8148d 100644 Binary files a/png/opensuse.png and b/png/opensuse.png differ diff --git a/png/openvas.png b/png/openvas.png index 27b93885..a3705fa9 100644 Binary files a/png/openvas.png and b/png/openvas.png differ diff --git a/png/openvpn.png b/png/openvpn.png index 7d3965f1..f4efac59 100644 Binary files a/png/openvpn.png and b/png/openvpn.png differ diff --git a/png/openwrt.png b/png/openwrt.png index 7fcb1c7a..247ecc49 100644 Binary files a/png/openwrt.png and b/png/openwrt.png differ diff --git a/png/opera-touch.png b/png/opera-touch.png index 26782037..75a06939 100644 Binary files a/png/opera-touch.png and b/png/opera-touch.png differ diff --git a/png/opnsense.png b/png/opnsense.png index 29da6e0a..a0b8ffaa 100644 Binary files a/png/opnsense.png and b/png/opnsense.png differ diff --git a/png/oracle-cloud.png b/png/oracle-cloud.png index f955f34d..c1d84a2a 100644 Binary files a/png/oracle-cloud.png and b/png/oracle-cloud.png differ diff --git a/png/oracle.png b/png/oracle.png index f955f34d..c1d84a2a 100644 Binary files a/png/oracle.png and b/png/oracle.png differ diff --git a/png/orange.png b/png/orange.png index 1dbe56e0..066dfa6c 100644 Binary files a/png/orange.png and b/png/orange.png differ diff --git a/png/organizr.png b/png/organizr.png index b51d176a..a757ccd0 100644 Binary files a/png/organizr.png and b/png/organizr.png differ diff --git a/png/oscarr-light.png b/png/oscarr-light.png index f0cf434a..5f4d8be1 100644 Binary files a/png/oscarr-light.png and b/png/oscarr-light.png differ diff --git a/png/oscarr.png b/png/oscarr.png index 63ea7b66..8d1aa03c 100644 Binary files a/png/oscarr.png and b/png/oscarr.png differ diff --git a/png/osticket.png b/png/osticket.png index 48bc0916..6a8499ba 100644 Binary files a/png/osticket.png and b/png/osticket.png differ diff --git a/png/outline.png b/png/outline.png index fe649484..9800808f 100644 Binary files a/png/outline.png and b/png/outline.png differ diff --git a/png/overclockers.png b/png/overclockers.png index 57acd57f..c7c84712 100644 Binary files a/png/overclockers.png and b/png/overclockers.png differ diff --git a/png/overseerr.png b/png/overseerr.png index 9a19e827..a847d270 100644 Binary files a/png/overseerr.png and b/png/overseerr.png differ diff --git a/png/ovh.png b/png/ovh.png index a32f360a..40db686e 100644 Binary files a/png/ovh.png and b/png/ovh.png differ diff --git a/png/ovirt.png b/png/ovirt.png index 31a53e59..8a231ea6 100644 Binary files a/png/ovirt.png and b/png/ovirt.png differ diff --git a/png/owncloud.png b/png/owncloud.png index 545e8d12..2696558b 100644 Binary files a/png/owncloud.png and b/png/owncloud.png differ diff --git a/png/ownphotos-light.png b/png/ownphotos-light.png index 2457b4d8..033dd1a3 100644 Binary files a/png/ownphotos-light.png and b/png/ownphotos-light.png differ diff --git a/png/ownphotos.png b/png/ownphotos.png index 4d1c16c2..988d5944 100644 Binary files a/png/ownphotos.png and b/png/ownphotos.png differ diff --git a/png/pagerduty.png b/png/pagerduty.png index 8c9ff53d..fd7b44c5 100644 Binary files a/png/pagerduty.png and b/png/pagerduty.png differ diff --git a/png/palemoon.png b/png/palemoon.png index 049fd0b6..dc8828ac 100644 Binary files a/png/palemoon.png and b/png/palemoon.png differ diff --git a/png/paperless-ng.png b/png/paperless-ng.png index bba3daf8..ecb9283a 100644 Binary files a/png/paperless-ng.png and b/png/paperless-ng.png differ diff --git a/png/paperless.png b/png/paperless.png index aef666b1..5705d3c4 100644 Binary files a/png/paperless.png and b/png/paperless.png differ diff --git a/png/papermerge.png b/png/papermerge.png index 03bd0389..1933a350 100644 Binary files a/png/papermerge.png and b/png/papermerge.png differ diff --git a/png/partkeepr.png b/png/partkeepr.png index 0d908173..655b172b 100644 Binary files a/png/partkeepr.png and b/png/partkeepr.png differ diff --git a/png/passwordpusher-light.png b/png/passwordpusher-light.png index dd4461cf..79c6d29d 100644 Binary files a/png/passwordpusher-light.png and b/png/passwordpusher-light.png differ diff --git a/png/passwordpusher.png b/png/passwordpusher.png index d419ba92..89b8bc33 100644 Binary files a/png/passwordpusher.png and b/png/passwordpusher.png differ diff --git a/png/pastatool-light.png b/png/pastatool-light.png index 5babd479..49b16c0e 100644 Binary files a/png/pastatool-light.png and b/png/pastatool-light.png differ diff --git a/png/pastatool.png b/png/pastatool.png index 01996905..ccc1db24 100644 Binary files a/png/pastatool.png and b/png/pastatool.png differ diff --git a/png/pastebin.png b/png/pastebin.png index 05a860b3..7d494d81 100644 Binary files a/png/pastebin.png and b/png/pastebin.png differ diff --git a/png/pastey.png b/png/pastey.png index 9a39c2ba..db4ab970 100644 Binary files a/png/pastey.png and b/png/pastey.png differ diff --git a/png/paypal.png b/png/paypal.png index 3cc22032..a64e8ff3 100644 Binary files a/png/paypal.png and b/png/paypal.png differ diff --git a/png/peertube.png b/png/peertube.png index 707a4ebe..df699299 100644 Binary files a/png/peertube.png and b/png/peertube.png differ diff --git a/png/petio.png b/png/petio.png index 475c5c58..50fca22c 100644 Binary files a/png/petio.png and b/png/petio.png differ diff --git a/png/pfsense.png b/png/pfsense.png index 1c43ad47..819a2847 100644 Binary files a/png/pfsense.png and b/png/pfsense.png differ diff --git a/png/pgadmin.png b/png/pgadmin.png index 38394e0a..a42f574f 100644 Binary files a/png/pgadmin.png and b/png/pgadmin.png differ diff --git a/png/phantombot.png b/png/phantombot.png index a47b6019..9c35938c 100644 Binary files a/png/phantombot.png and b/png/phantombot.png differ diff --git a/png/phoneinfoga-light.png b/png/phoneinfoga-light.png index 2a2d5b64..f7981d04 100644 Binary files a/png/phoneinfoga-light.png and b/png/phoneinfoga-light.png differ diff --git a/png/phoneinfoga.png b/png/phoneinfoga.png index f07ea736..7d983f21 100644 Binary files a/png/phoneinfoga.png and b/png/phoneinfoga.png differ diff --git a/png/photonix-light.png b/png/photonix-light.png index e748aeca..c37eaaf5 100644 Binary files a/png/photonix-light.png and b/png/photonix-light.png differ diff --git a/png/photonix.png b/png/photonix.png index 897cf215..0b15b945 100644 Binary files a/png/photonix.png and b/png/photonix.png differ diff --git a/png/photoprism.png b/png/photoprism.png index d1fb1be6..b3545893 100644 Binary files a/png/photoprism.png and b/png/photoprism.png differ diff --git a/png/photostructure.png b/png/photostructure.png index b6da00d9..8dedee91 100644 Binary files a/png/photostructure.png and b/png/photostructure.png differ diff --git a/png/photoview.png b/png/photoview.png index d7106b36..5b20fb1c 100644 Binary files a/png/photoview.png and b/png/photoview.png differ diff --git a/png/php.png b/png/php.png index 45b16041..78103952 100644 Binary files a/png/php.png and b/png/php.png differ diff --git a/png/phpipam.png b/png/phpipam.png index d63c775b..38bf098f 100644 Binary files a/png/phpipam.png and b/png/phpipam.png differ diff --git a/png/phpldapadmin.png b/png/phpldapadmin.png index e91e7f14..22b7f511 100644 Binary files a/png/phpldapadmin.png and b/png/phpldapadmin.png differ diff --git a/png/phpmyadmin.png b/png/phpmyadmin.png index edcfdef0..6cef98e8 100644 Binary files a/png/phpmyadmin.png and b/png/phpmyadmin.png differ diff --git a/png/pi-alert.png b/png/pi-alert.png index 4a0a5b8a..b98a0f0e 100644 Binary files a/png/pi-alert.png and b/png/pi-alert.png differ diff --git a/png/pi-hole-unbound.png b/png/pi-hole-unbound.png index 8948c979..7c79324e 100644 Binary files a/png/pi-hole-unbound.png and b/png/pi-hole-unbound.png differ diff --git a/png/pi-hole.png b/png/pi-hole.png index af9dbc91..de1dd7da 100644 Binary files a/png/pi-hole.png and b/png/pi-hole.png differ diff --git a/png/pia.png b/png/pia.png index 9a684e34..0636bd29 100644 Binary files a/png/pia.png and b/png/pia.png differ diff --git a/png/piaware.png b/png/piaware.png index bfab88d9..f1e87c24 100644 Binary files a/png/piaware.png and b/png/piaware.png differ diff --git a/png/pigallery2-light.png b/png/pigallery2-light.png index d1febc9f..a39b7b03 100644 Binary files a/png/pigallery2-light.png and b/png/pigallery2-light.png differ diff --git a/png/pigallery2.png b/png/pigallery2.png index 571bf36b..3e1abb7c 100644 Binary files a/png/pigallery2.png and b/png/pigallery2.png differ diff --git a/png/pikvm-light.png b/png/pikvm-light.png index 43d6b814..0ec04fb5 100644 Binary files a/png/pikvm-light.png and b/png/pikvm-light.png differ diff --git a/png/pikvm.png b/png/pikvm.png index 5fb1b3ff..19053da3 100644 Binary files a/png/pikvm.png and b/png/pikvm.png differ diff --git a/png/pingdom.png b/png/pingdom.png index b4b18f5a..b1322671 100644 Binary files a/png/pingdom.png and b/png/pingdom.png differ diff --git a/png/pingvin.png b/png/pingvin.png index 94ce9e53..ef497fc1 100644 Binary files a/png/pingvin.png and b/png/pingvin.png differ diff --git a/png/pinry.png b/png/pinry.png index a0d5f0d8..adbcc285 100644 Binary files a/png/pinry.png and b/png/pinry.png differ diff --git a/png/pinterest.png b/png/pinterest.png index 27b2512a..5d2e9b12 100644 Binary files a/png/pinterest.png and b/png/pinterest.png differ diff --git a/png/pioneer-light.png b/png/pioneer-light.png index bd0dd440..deac7d34 100644 Binary files a/png/pioneer-light.png and b/png/pioneer-light.png differ diff --git a/png/pioneer.png b/png/pioneer.png index fd644f93..4fba6f93 100644 Binary files a/png/pioneer.png and b/png/pioneer.png differ diff --git a/png/pirate-proxy.png b/png/pirate-proxy.png index 6c7de87f..bd74a9e1 100644 Binary files a/png/pirate-proxy.png and b/png/pirate-proxy.png differ diff --git a/png/pivpn.png b/png/pivpn.png index 06a410e6..b52d602a 100644 Binary files a/png/pivpn.png and b/png/pivpn.png differ diff --git a/png/piwigo.png b/png/piwigo.png index 01f741f4..fcfebad9 100644 Binary files a/png/piwigo.png and b/png/piwigo.png differ diff --git a/png/pixelfed.png b/png/pixelfed.png index cae73e08..5e3d2245 100644 Binary files a/png/pixelfed.png and b/png/pixelfed.png differ diff --git a/png/planka.png b/png/planka.png index e1898f0e..8d852387 100644 Binary files a/png/planka.png and b/png/planka.png differ diff --git a/png/plausible.png b/png/plausible.png index c39afdf0..ea79012a 100644 Binary files a/png/plausible.png and b/png/plausible.png differ diff --git a/png/pleroma.png b/png/pleroma.png index 10e34293..4fee27b4 100644 Binary files a/png/pleroma.png and b/png/pleroma.png differ diff --git a/png/plesk-light.png b/png/plesk-light.png index 2affd499..e616d8fb 100644 Binary files a/png/plesk-light.png and b/png/plesk-light.png differ diff --git a/png/plesk.png b/png/plesk.png index 336e37b4..ecf3448e 100644 Binary files a/png/plesk.png and b/png/plesk.png differ diff --git a/png/plex-alt-light.png b/png/plex-alt-light.png index 8787c637..6a25bc02 100644 Binary files a/png/plex-alt-light.png and b/png/plex-alt-light.png differ diff --git a/png/plex-alt.png b/png/plex-alt.png index e051a9a8..73a14a63 100644 Binary files a/png/plex-alt.png and b/png/plex-alt.png differ diff --git a/png/plex.png b/png/plex.png index 40968164..e7af890a 100644 Binary files a/png/plex.png and b/png/plex.png differ diff --git a/png/plexdrive.png b/png/plexdrive.png index 373f9647..cada67a2 100644 Binary files a/png/plexdrive.png and b/png/plexdrive.png differ diff --git a/png/plexrequests.png b/png/plexrequests.png index a3d335fb..5d0061c3 100644 Binary files a/png/plexrequests.png and b/png/plexrequests.png differ diff --git a/png/plume.png b/png/plume.png index af5362ac..415ce04b 100644 Binary files a/png/plume.png and b/png/plume.png differ diff --git a/png/podify.png b/png/podify.png index 896b3a5e..84494e5c 100644 Binary files a/png/podify.png and b/png/podify.png differ diff --git a/png/podnapisi.png b/png/podnapisi.png index 26f22ec8..0c6afee0 100644 Binary files a/png/podnapisi.png and b/png/podnapisi.png differ diff --git a/png/poly.png b/png/poly.png index 836319cf..e2db72ba 100644 Binary files a/png/poly.png and b/png/poly.png differ diff --git a/png/polywork.png b/png/polywork.png index 3347ae9c..aee0b49a 100644 Binary files a/png/polywork.png and b/png/polywork.png differ diff --git a/png/portainer-alt.png b/png/portainer-alt.png index 2dd69f8b..e336a781 100644 Binary files a/png/portainer-alt.png and b/png/portainer-alt.png differ diff --git a/png/portainer.png b/png/portainer.png index 66e7da63..a3a7e092 100644 Binary files a/png/portainer.png and b/png/portainer.png differ diff --git a/png/portus.png b/png/portus.png index 17b1bdf4..afb3a5af 100644 Binary files a/png/portus.png and b/png/portus.png differ diff --git a/png/poste.png b/png/poste.png index 6e06b229..9d6e13b2 100644 Binary files a/png/poste.png and b/png/poste.png differ diff --git a/png/postgres.png b/png/postgres.png index 38394e0a..a42f574f 100644 Binary files a/png/postgres.png and b/png/postgres.png differ diff --git a/png/powerdns.png b/png/powerdns.png index c548998f..9303f607 100644 Binary files a/png/powerdns.png and b/png/powerdns.png differ diff --git a/png/powerpanel.png b/png/powerpanel.png index 64d81666..dfe193aa 100644 Binary files a/png/powerpanel.png and b/png/powerpanel.png differ diff --git a/png/premium-mobile.png b/png/premium-mobile.png index 31f61acc..a7e650f6 100644 Binary files a/png/premium-mobile.png and b/png/premium-mobile.png differ diff --git a/png/printer.png b/png/printer.png index 9ac81834..65e67a66 100644 Binary files a/png/printer.png and b/png/printer.png differ diff --git a/png/pritunl.png b/png/pritunl.png index 9dc27929..451793b8 100644 Binary files a/png/pritunl.png and b/png/pritunl.png differ diff --git a/png/privacyidea.png b/png/privacyidea.png index e6f8a657..2da59876 100644 Binary files a/png/privacyidea.png and b/png/privacyidea.png differ diff --git a/png/private-internet-access.png b/png/private-internet-access.png index 9a684e34..0636bd29 100644 Binary files a/png/private-internet-access.png and b/png/private-internet-access.png differ diff --git a/png/privatebin.png b/png/privatebin.png index 1761c27f..fe7c6e63 100644 Binary files a/png/privatebin.png and b/png/privatebin.png differ diff --git a/png/projectsend.png b/png/projectsend.png index cbf1ea43..115085af 100644 Binary files a/png/projectsend.png and b/png/projectsend.png differ diff --git a/png/prometheus.png b/png/prometheus.png index 8ca7c9e3..c83eebda 100644 Binary files a/png/prometheus.png and b/png/prometheus.png differ diff --git a/png/proton-calendar.png b/png/proton-calendar.png index 140731cd..7878c1ca 100644 Binary files a/png/proton-calendar.png and b/png/proton-calendar.png differ diff --git a/png/proton-drive.png b/png/proton-drive.png index 7f4b47bb..75c4cb33 100644 Binary files a/png/proton-drive.png and b/png/proton-drive.png differ diff --git a/png/proton-mail.png b/png/proton-mail.png index 20a3c3dc..773e79ec 100644 Binary files a/png/proton-mail.png and b/png/proton-mail.png differ diff --git a/png/proton-vpn.png b/png/proton-vpn.png index 80772571..3b22b1eb 100644 Binary files a/png/proton-vpn.png and b/png/proton-vpn.png differ diff --git a/png/prowlarr.png b/png/prowlarr.png index f368cf0a..0b84dea6 100644 Binary files a/png/prowlarr.png and b/png/prowlarr.png differ diff --git a/png/proxmox-light.png b/png/proxmox-light.png index 429cf31e..db79bbb3 100644 Binary files a/png/proxmox-light.png and b/png/proxmox-light.png differ diff --git a/png/proxmox.png b/png/proxmox.png index 89c83581..9f2c9a7b 100644 Binary files a/png/proxmox.png and b/png/proxmox.png differ diff --git a/png/prtg.png b/png/prtg.png index 9da2b51f..41cb5bd4 100644 Binary files a/png/prtg.png and b/png/prtg.png differ diff --git a/png/psitransfer.png b/png/psitransfer.png index 1d739139..a765f6f4 100644 Binary files a/png/psitransfer.png and b/png/psitransfer.png differ diff --git a/png/pterodactyl.png b/png/pterodactyl.png index da161615..a5addb87 100644 Binary files a/png/pterodactyl.png and b/png/pterodactyl.png differ diff --git a/png/pufferpanel.png b/png/pufferpanel.png index 1c3ef5c9..6df0f11b 100644 Binary files a/png/pufferpanel.png and b/png/pufferpanel.png differ diff --git a/png/pushfish.png b/png/pushfish.png index 86d017a4..243d3a64 100644 Binary files a/png/pushfish.png and b/png/pushfish.png differ diff --git a/png/pushover.png b/png/pushover.png index de79ed2d..2383f6ca 100644 Binary files a/png/pushover.png and b/png/pushover.png differ diff --git a/png/putty.png b/png/putty.png index 245818c5..70dc9a9f 100644 Binary files a/png/putty.png and b/png/putty.png differ diff --git a/png/pwndrop-light.png b/png/pwndrop-light.png index 7c2975c3..da62dc61 100644 Binary files a/png/pwndrop-light.png and b/png/pwndrop-light.png differ diff --git a/png/pwndrop.png b/png/pwndrop.png index 6c0307aa..dc726238 100644 Binary files a/png/pwndrop.png and b/png/pwndrop.png differ diff --git a/png/pwpush-light.png b/png/pwpush-light.png index dd4461cf..79c6d29d 100644 Binary files a/png/pwpush-light.png and b/png/pwpush-light.png differ diff --git a/png/pwpush.png b/png/pwpush.png index d419ba92..89b8bc33 100644 Binary files a/png/pwpush.png and b/png/pwpush.png differ diff --git a/png/pydio.png b/png/pydio.png index 8d510804..0b13cf50 100644 Binary files a/png/pydio.png and b/png/pydio.png differ diff --git a/png/pyload.png b/png/pyload.png index 0f09b6ac..e9600334 100644 Binary files a/png/pyload.png and b/png/pyload.png differ diff --git a/png/python.png b/png/python.png index eb3d45e6..a20dc86b 100644 Binary files a/png/python.png and b/png/python.png differ diff --git a/png/qbittorrent.png b/png/qbittorrent.png index d6d27e34..da45342c 100644 Binary files a/png/qbittorrent.png and b/png/qbittorrent.png differ diff --git a/png/qdirstat.png b/png/qdirstat.png index 46a2792b..176cfc7f 100644 Binary files a/png/qdirstat.png and b/png/qdirstat.png differ diff --git a/png/qinglong.png b/png/qinglong.png index 588162bc..2455dd35 100644 Binary files a/png/qinglong.png and b/png/qinglong.png differ diff --git a/png/qnap.png b/png/qnap.png index eb753712..d4a13914 100644 Binary files a/png/qnap.png and b/png/qnap.png differ diff --git a/png/quant-ux.png b/png/quant-ux.png index 96b33e76..8c349999 100644 Binary files a/png/quant-ux.png and b/png/quant-ux.png differ diff --git a/png/questdb.png b/png/questdb.png index 5799e4ba..727a0fd6 100644 Binary files a/png/questdb.png and b/png/questdb.png differ diff --git a/png/r.png b/png/r.png index 8a16fe36..e3789730 100644 Binary files a/png/r.png and b/png/r.png differ diff --git a/png/rainloop-light.png b/png/rainloop-light.png index 57eec217..73d62d6a 100644 Binary files a/png/rainloop-light.png and b/png/rainloop-light.png differ diff --git a/png/rainloop.png b/png/rainloop.png index e5595b41..215a273d 100644 Binary files a/png/rainloop.png and b/png/rainloop.png differ diff --git a/png/rancher.png b/png/rancher.png index 6aaf46a1..4515d6c0 100644 Binary files a/png/rancher.png and b/png/rancher.png differ diff --git a/png/raneto.png b/png/raneto.png index a8cda124..0758f367 100644 Binary files a/png/raneto.png and b/png/raneto.png differ diff --git a/png/raritan-light.png b/png/raritan-light.png index 96f2489f..f4c29508 100644 Binary files a/png/raritan-light.png and b/png/raritan-light.png differ diff --git a/png/raritan.png b/png/raritan.png index 6ece489f..683ab420 100644 Binary files a/png/raritan.png and b/png/raritan.png differ diff --git a/png/raspberrymatic.png b/png/raspberrymatic.png index c6780c99..c9e367d8 100644 Binary files a/png/raspberrymatic.png and b/png/raspberrymatic.png differ diff --git a/png/raspberrypi.png b/png/raspberrypi.png index 70b2f7fa..7996cc45 100644 Binary files a/png/raspberrypi.png and b/png/raspberrypi.png differ diff --git a/png/rathole.png b/png/rathole.png index 2a3de386..25744ff9 100644 Binary files a/png/rathole.png and b/png/rathole.png differ diff --git a/png/rclone.png b/png/rclone.png index d3404d70..90df575c 100644 Binary files a/png/rclone.png and b/png/rclone.png differ diff --git a/png/rdt-client.png b/png/rdt-client.png index 315ef276..b164a378 100644 Binary files a/png/rdt-client.png and b/png/rdt-client.png differ diff --git a/png/readarr.png b/png/readarr.png index c4b2c514..9bccfeee 100644 Binary files a/png/readarr.png and b/png/readarr.png differ diff --git a/png/readthedocs-light.png b/png/readthedocs-light.png index b304d5b8..5a950385 100644 Binary files a/png/readthedocs-light.png and b/png/readthedocs-light.png differ diff --git a/png/readthedocs.png b/png/readthedocs.png index 83bb3330..b2ce3637 100644 Binary files a/png/readthedocs.png and b/png/readthedocs.png differ diff --git a/png/real-debrid.png b/png/real-debrid.png index 315ef276..b164a378 100644 Binary files a/png/real-debrid.png and b/png/real-debrid.png differ diff --git a/png/realhosting.png b/png/realhosting.png index d3a6c9ef..6f2d9eb9 100644 Binary files a/png/realhosting.png and b/png/realhosting.png differ diff --git a/png/recalbox.png b/png/recalbox.png index 84ac9d19..5d1703fd 100644 Binary files a/png/recalbox.png and b/png/recalbox.png differ diff --git a/png/recipesage.png b/png/recipesage.png index 9c008002..4d7e1869 100644 Binary files a/png/recipesage.png and b/png/recipesage.png differ diff --git a/png/reddit.png b/png/reddit.png index 8f230920..455876db 100644 Binary files a/png/reddit.png and b/png/reddit.png differ diff --git a/png/redis.png b/png/redis.png index ec6d9ab6..cdf3273f 100644 Binary files a/png/redis.png and b/png/redis.png differ diff --git a/png/remotely.png b/png/remotely.png index 7aeae0e3..4c5a4e99 100644 Binary files a/png/remotely.png and b/png/remotely.png differ diff --git a/png/requestrr.png b/png/requestrr.png index ca6bb27f..caf255e6 100644 Binary files a/png/requestrr.png and b/png/requestrr.png differ diff --git a/png/resiliosync.png b/png/resiliosync.png index ce9b689c..9e7b28f8 100644 Binary files a/png/resiliosync.png and b/png/resiliosync.png differ diff --git a/png/rhasspy-light.png b/png/rhasspy-light.png index e2f021d6..bd3cbef8 100644 Binary files a/png/rhasspy-light.png and b/png/rhasspy-light.png differ diff --git a/png/rhasspy.png b/png/rhasspy.png index 8c51ee89..af00f6d0 100644 Binary files a/png/rhasspy.png and b/png/rhasspy.png differ diff --git a/png/rhodecode.png b/png/rhodecode.png index de8926c4..5a95270e 100644 Binary files a/png/rhodecode.png and b/png/rhodecode.png differ diff --git a/png/riot.png b/png/riot.png index 893c5159..eb28d2bd 100644 Binary files a/png/riot.png and b/png/riot.png differ diff --git a/png/rocketchat.png b/png/rocketchat.png index 0f7a6153..af17c388 100644 Binary files a/png/rocketchat.png and b/png/rocketchat.png differ diff --git a/png/rocky-linux.png b/png/rocky-linux.png index e1c1a2ea..531547da 100644 Binary files a/png/rocky-linux.png and b/png/rocky-linux.png differ diff --git a/png/rook.png b/png/rook.png index 8dadb065..168d6d0f 100644 Binary files a/png/rook.png and b/png/rook.png differ diff --git a/png/roundcube.png b/png/roundcube.png index cce030d7..0a2f3cd0 100644 Binary files a/png/roundcube.png and b/png/roundcube.png differ diff --git a/png/router.png b/png/router.png index ef048ce8..1ea6ec98 100644 Binary files a/png/router.png and b/png/router.png differ diff --git a/png/rpi-monitor.png b/png/rpi-monitor.png index 7c610739..1e9c9c19 100644 Binary files a/png/rpi-monitor.png and b/png/rpi-monitor.png differ diff --git a/png/rport.png b/png/rport.png index c2b4cdfb..480467b8 100644 Binary files a/png/rport.png and b/png/rport.png differ diff --git a/png/rss-bridge.png b/png/rss-bridge.png index 50e8b72a..b02760a1 100644 Binary files a/png/rss-bridge.png and b/png/rss-bridge.png differ diff --git a/png/rsshub.png b/png/rsshub.png index 3ca374f0..15ba763d 100644 Binary files a/png/rsshub.png and b/png/rsshub.png differ diff --git a/png/rstudio.png b/png/rstudio.png index 3ee8610e..6df81335 100644 Binary files a/png/rstudio.png and b/png/rstudio.png differ diff --git a/png/rstudioserver.png b/png/rstudioserver.png index 3ee8610e..6df81335 100644 Binary files a/png/rstudioserver.png and b/png/rstudioserver.png differ diff --git a/png/ruby.png b/png/ruby.png index 1515383c..ecf48b26 100644 Binary files a/png/ruby.png and b/png/ruby.png differ diff --git a/png/rundeck.png b/png/rundeck.png index 24ba9511..c94c9ae2 100644 Binary files a/png/rundeck.png and b/png/rundeck.png differ diff --git a/png/runonflux.png b/png/runonflux.png index 7a4a9b18..66d3ff79 100644 Binary files a/png/runonflux.png and b/png/runonflux.png differ diff --git a/png/rust.png b/png/rust.png index 1fc9e4e6..be85d158 100644 Binary files a/png/rust.png and b/png/rust.png differ diff --git a/png/rustdesk.png b/png/rustdesk.png index d2cf8ef3..805a0228 100644 Binary files a/png/rustdesk.png and b/png/rustdesk.png differ diff --git a/png/rutorrent.png b/png/rutorrent.png index f6ce9276..40d4a4ec 100644 Binary files a/png/rutorrent.png and b/png/rutorrent.png differ diff --git a/png/sabnzbd-alt.png b/png/sabnzbd-alt.png index 33eea2ef..b2628690 100644 Binary files a/png/sabnzbd-alt.png and b/png/sabnzbd-alt.png differ diff --git a/png/sabnzbd.png b/png/sabnzbd.png index 461f35af..c77a304d 100644 Binary files a/png/sabnzbd.png and b/png/sabnzbd.png differ diff --git a/png/sagemcom.png b/png/sagemcom.png index fd87fa8c..cc33686a 100644 Binary files a/png/sagemcom.png and b/png/sagemcom.png differ diff --git a/png/salad.png b/png/salad.png new file mode 100644 index 00000000..8882e4a2 Binary files /dev/null and b/png/salad.png differ diff --git a/png/sandstorm.png b/png/sandstorm.png index 595536e1..8337659f 100644 Binary files a/png/sandstorm.png and b/png/sandstorm.png differ diff --git a/png/scrutiny-light.png b/png/scrutiny-light.png index 3d73d915..8d0f4850 100644 Binary files a/png/scrutiny-light.png and b/png/scrutiny-light.png differ diff --git a/png/scrutiny.png b/png/scrutiny.png index 300ec01d..9b8f5e58 100644 Binary files a/png/scrutiny.png and b/png/scrutiny.png differ diff --git a/png/scypted.png b/png/scypted.png index 789dc117..45e4659f 100644 Binary files a/png/scypted.png and b/png/scypted.png differ diff --git a/png/seafile.png b/png/seafile.png index c47f7246..d4445192 100644 Binary files a/png/seafile.png and b/png/seafile.png differ diff --git a/png/searx-light.png b/png/searx-light.png index 4e43768f..ee51e197 100644 Binary files a/png/searx-light.png and b/png/searx-light.png differ diff --git a/png/searx.png b/png/searx.png index 32ceb505..b59eb728 100644 Binary files a/png/searx.png and b/png/searx.png differ diff --git a/png/searxng.png b/png/searxng.png index 915339be..b7d60049 100644 Binary files a/png/searxng.png and b/png/searxng.png differ diff --git a/png/selfhosted-light.png b/png/selfhosted-light.png index e39eda3c..682ff3e1 100644 Binary files a/png/selfhosted-light.png and b/png/selfhosted-light.png differ diff --git a/png/selfhosted.png b/png/selfhosted.png index 72d1254f..e64a9778 100644 Binary files a/png/selfhosted.png and b/png/selfhosted.png differ diff --git a/png/sendinblue.png b/png/sendinblue.png index 87d8f2a5..cc98b788 100644 Binary files a/png/sendinblue.png and b/png/sendinblue.png differ diff --git a/png/sensu.png b/png/sensu.png index 61925cdb..ff46b02e 100644 Binary files a/png/sensu.png and b/png/sensu.png differ diff --git a/png/sentry.png b/png/sentry.png index d45b0500..2a44ab3e 100644 Binary files a/png/sentry.png and b/png/sentry.png differ diff --git a/png/seq.png b/png/seq.png index eabe42a0..fdc058d2 100644 Binary files a/png/seq.png and b/png/seq.png differ diff --git a/png/servarr-light.png b/png/servarr-light.png index dd829b78..1be60698 100644 Binary files a/png/servarr-light.png and b/png/servarr-light.png differ diff --git a/png/servarr.png b/png/servarr.png index 526a9a9c..be289933 100644 Binary files a/png/servarr.png and b/png/servarr.png differ diff --git a/png/serviio.png b/png/serviio.png index abd67c30..e45bfa66 100644 Binary files a/png/serviio.png and b/png/serviio.png differ diff --git a/png/sftpgo.png b/png/sftpgo.png index 1509f938..e1537af2 100644 Binary files a/png/sftpgo.png and b/png/sftpgo.png differ diff --git a/png/shaarli.png b/png/shaarli.png index b975b31c..979f5f6c 100644 Binary files a/png/shaarli.png and b/png/shaarli.png differ diff --git a/png/shell-light.png b/png/shell-light.png index 94bd17c0..03ec0184 100644 Binary files a/png/shell-light.png and b/png/shell-light.png differ diff --git a/png/shell-tips-light.png b/png/shell-tips-light.png index e74ba2c3..f5c8d81e 100644 Binary files a/png/shell-tips-light.png and b/png/shell-tips-light.png differ diff --git a/png/shell-tips.png b/png/shell-tips.png index e52ffb62..5f932f5b 100644 Binary files a/png/shell-tips.png and b/png/shell-tips.png differ diff --git a/png/shell.png b/png/shell.png index bf262c54..3a535a17 100644 Binary files a/png/shell.png and b/png/shell.png differ diff --git a/png/shellhub.png b/png/shellhub.png index 21013d49..3868a771 100644 Binary files a/png/shellhub.png and b/png/shellhub.png differ diff --git a/png/shellngn.png b/png/shellngn.png index 272ec1d2..43bc55a0 100644 Binary files a/png/shellngn.png and b/png/shellngn.png differ diff --git a/png/shelly.png b/png/shelly.png index 9265e718..36fac689 100644 Binary files a/png/shelly.png and b/png/shelly.png differ diff --git a/png/shinobi.png b/png/shinobi.png index db6075d2..4ad55191 100644 Binary files a/png/shinobi.png and b/png/shinobi.png differ diff --git a/png/shiori.png b/png/shiori.png index e2705e71..4431f602 100644 Binary files a/png/shiori.png and b/png/shiori.png differ diff --git a/png/shlink.png b/png/shlink.png index 944e61d4..743efa07 100644 Binary files a/png/shlink.png and b/png/shlink.png differ diff --git a/png/shoko.png b/png/shoko.png index 192480f4..136f09b5 100644 Binary files a/png/shoko.png and b/png/shoko.png differ diff --git a/png/sickbeard.png b/png/sickbeard.png index c69509d6..c213b55e 100644 Binary files a/png/sickbeard.png and b/png/sickbeard.png differ diff --git a/png/sickgear.png b/png/sickgear.png index 8761fba9..ab405b12 100644 Binary files a/png/sickgear.png and b/png/sickgear.png differ diff --git a/png/silverbullet.png b/png/silverbullet.png index 7a963b9e..866f4c09 100644 Binary files a/png/silverbullet.png and b/png/silverbullet.png differ diff --git a/png/simplelogin.png b/png/simplelogin.png index 2f3017c8..a9dd0ee3 100644 Binary files a/png/simplelogin.png and b/png/simplelogin.png differ diff --git a/png/sinusbot.png b/png/sinusbot.png index 035ed826..af297523 100644 Binary files a/png/sinusbot.png and b/png/sinusbot.png differ diff --git a/png/siyuan.png b/png/siyuan.png index 9f923b82..90e1d3f0 100644 Binary files a/png/siyuan.png and b/png/siyuan.png differ diff --git a/png/skylink-fibernet.png b/png/skylink-fibernet.png index e85098b5..fee5a9ea 100644 Binary files a/png/skylink-fibernet.png and b/png/skylink-fibernet.png differ diff --git a/png/skype.png b/png/skype.png index e9a98677..a2a92e5f 100644 Binary files a/png/skype.png and b/png/skype.png differ diff --git a/png/slack.png b/png/slack.png index d7a191b0..4e00728c 100644 Binary files a/png/slack.png and b/png/slack.png differ diff --git a/png/slice.png b/png/slice.png new file mode 100644 index 00000000..8ab1d559 Binary files /dev/null and b/png/slice.png differ diff --git a/png/snapchat.png b/png/snapchat.png index e10db15b..6eeaca10 100644 Binary files a/png/snapchat.png and b/png/snapchat.png differ diff --git a/png/snapdrop.png b/png/snapdrop.png index 7f36fdef..640ed1e9 100644 Binary files a/png/snapdrop.png and b/png/snapdrop.png differ diff --git a/png/snipe-it.png b/png/snipe-it.png index 9578e303..9b457d62 100644 Binary files a/png/snipe-it.png and b/png/snipe-it.png differ diff --git a/png/snippetbox.png b/png/snippetbox.png index 41056138..2b266019 100644 Binary files a/png/snippetbox.png and b/png/snippetbox.png differ diff --git a/png/sogo.png b/png/sogo.png index d994c9b3..e0f41e41 100644 Binary files a/png/sogo.png and b/png/sogo.png differ diff --git a/png/solid-invoice.png b/png/solid-invoice.png index 1c46323b..1e063485 100644 Binary files a/png/solid-invoice.png and b/png/solid-invoice.png differ diff --git a/png/sonarqube.png b/png/sonarqube.png index 2d8831fc..3157dc0c 100644 Binary files a/png/sonarqube.png and b/png/sonarqube.png differ diff --git a/png/sonarr.png b/png/sonarr.png index 12d61f6a..245d5514 100644 Binary files a/png/sonarr.png and b/png/sonarr.png differ diff --git a/png/soulseek.png b/png/soulseek.png index a2b5de23..a82410e0 100644 Binary files a/png/soulseek.png and b/png/soulseek.png differ diff --git a/png/sourcegraph.png b/png/sourcegraph.png index afcb1d9f..07b8dc73 100644 Binary files a/png/sourcegraph.png and b/png/sourcegraph.png differ diff --git a/png/spamassassin.png b/png/spamassassin.png index 89204da4..fa2d762b 100644 Binary files a/png/spamassassin.png and b/png/spamassassin.png differ diff --git a/png/sparkleshare.png b/png/sparkleshare.png index a41ccc96..c57257af 100644 Binary files a/png/sparkleshare.png and b/png/sparkleshare.png differ diff --git a/png/specter-desktop.png b/png/specter-desktop.png index f1d9dacc..5ed217fe 100644 Binary files a/png/specter-desktop.png and b/png/specter-desktop.png differ diff --git a/png/speedtest-tracker.png b/png/speedtest-tracker.png index 9c25b467..15c6ca5b 100644 Binary files a/png/speedtest-tracker.png and b/png/speedtest-tracker.png differ diff --git a/png/sphinx-doc.png b/png/sphinx-doc.png index 648ac4c2..a44bec3b 100644 Binary files a/png/sphinx-doc.png and b/png/sphinx-doc.png differ diff --git a/png/sphinx-relay.png b/png/sphinx-relay.png index 7d5c898c..dcd4a893 100644 Binary files a/png/sphinx-relay.png and b/png/sphinx-relay.png differ diff --git a/png/sphinx.png b/png/sphinx.png index 648ac4c2..a44bec3b 100644 Binary files a/png/sphinx.png and b/png/sphinx.png differ diff --git a/png/splunk.png b/png/splunk.png index 7f531018..a39ab0d8 100644 Binary files a/png/splunk.png and b/png/splunk.png differ diff --git a/png/spotify.png b/png/spotify.png index 840ba982..0c843eeb 100644 Binary files a/png/spotify.png and b/png/spotify.png differ diff --git a/png/spotnet.png b/png/spotnet.png index de3eecea..a68bde89 100644 Binary files a/png/spotnet.png and b/png/spotnet.png differ diff --git a/png/sqlitebrowser.png b/png/sqlitebrowser.png index cd4136f5..9ea9a466 100644 Binary files a/png/sqlitebrowser.png and b/png/sqlitebrowser.png differ diff --git a/png/squeezebox-server.png b/png/squeezebox-server.png index e87d1c64..d91de0cf 100644 Binary files a/png/squeezebox-server.png and b/png/squeezebox-server.png differ diff --git a/png/squidex.png b/png/squidex.png index e74cdbdb..02dcb621 100644 Binary files a/png/squidex.png and b/png/squidex.png differ diff --git a/png/sshwifty.png b/png/sshwifty.png index d8b4ab71..ff34b455 100644 Binary files a/png/sshwifty.png and b/png/sshwifty.png differ diff --git a/png/startpage.png b/png/startpage.png index a158fb5b..782a2eb0 100644 Binary files a/png/startpage.png and b/png/startpage.png differ diff --git a/png/stash.png b/png/stash.png index 034b3347..17b6d2cc 100644 Binary files a/png/stash.png and b/png/stash.png differ diff --git a/png/statping-ng.png b/png/statping-ng.png index 3acdea97..a886a1c2 100644 Binary files a/png/statping-ng.png and b/png/statping-ng.png differ diff --git a/png/statping.png b/png/statping.png index 3acdea97..a886a1c2 100644 Binary files a/png/statping.png and b/png/statping.png differ diff --git a/png/stirling-pdf.png b/png/stirling-pdf.png index 2fe164f3..e9985994 100644 Binary files a/png/stirling-pdf.png and b/png/stirling-pdf.png differ diff --git a/png/storj.png b/png/storj.png index ec540055..74e7ffad 100644 Binary files a/png/storj.png and b/png/storj.png differ diff --git a/png/strapi.png b/png/strapi.png index cab918e8..ccc5c3dd 100644 Binary files a/png/strapi.png and b/png/strapi.png differ diff --git a/png/substreamer.png b/png/substreamer.png index 19c54b94..95b1696d 100644 Binary files a/png/substreamer.png and b/png/substreamer.png differ diff --git a/png/supermicro.png b/png/supermicro.png index 0f55f39e..529ed662 100644 Binary files a/png/supermicro.png and b/png/supermicro.png differ diff --git a/png/swift.png b/png/swift.png index 24e968d7..f805626a 100644 Binary files a/png/swift.png and b/png/swift.png differ diff --git a/png/swizzin.png b/png/swizzin.png index e5f405f4..5ba06bdf 100644 Binary files a/png/swizzin.png and b/png/swizzin.png differ diff --git a/png/symmetricom-light.png b/png/symmetricom-light.png index bd32333f..9ef7d71a 100644 Binary files a/png/symmetricom-light.png and b/png/symmetricom-light.png differ diff --git a/png/symmetricom.png b/png/symmetricom.png index 85daa754..bfdabcb8 100644 Binary files a/png/symmetricom.png and b/png/symmetricom.png differ diff --git a/png/sympa.png b/png/sympa.png index 7243fe9f..58f3fb98 100644 Binary files a/png/sympa.png and b/png/sympa.png differ diff --git a/png/syncany.png b/png/syncany.png index b3f17f49..9aaadcdc 100644 Binary files a/png/syncany.png and b/png/syncany.png differ diff --git a/png/synclounge-light.png b/png/synclounge-light.png index a6467bb6..1b504a3c 100644 Binary files a/png/synclounge-light.png and b/png/synclounge-light.png differ diff --git a/png/synclounge.png b/png/synclounge.png index 814b0979..b9999c2f 100644 Binary files a/png/synclounge.png and b/png/synclounge.png differ diff --git a/png/syncthing.png b/png/syncthing.png index 9ad94644..e397aef6 100644 Binary files a/png/syncthing.png and b/png/syncthing.png differ diff --git a/png/synology-audio-station.png b/png/synology-audio-station.png index 0ec6e646..3a965af3 100644 Binary files a/png/synology-audio-station.png and b/png/synology-audio-station.png differ diff --git a/png/synology-calendar.png b/png/synology-calendar.png index 8c0b0a3a..5db8499f 100644 Binary files a/png/synology-calendar.png and b/png/synology-calendar.png differ diff --git a/png/synology-chat.png b/png/synology-chat.png index 4ec2d01d..25c5c615 100644 Binary files a/png/synology-chat.png and b/png/synology-chat.png differ diff --git a/png/synology-cloud-sync.png b/png/synology-cloud-sync.png index 4a162a86..2e58e93a 100644 Binary files a/png/synology-cloud-sync.png and b/png/synology-cloud-sync.png differ diff --git a/png/synology-contacts.png b/png/synology-contacts.png index a4a093d1..66d2b32d 100644 Binary files a/png/synology-contacts.png and b/png/synology-contacts.png differ diff --git a/png/synology-document-viewer.png b/png/synology-document-viewer.png index 2ade6f14..d2e272dc 100644 Binary files a/png/synology-document-viewer.png and b/png/synology-document-viewer.png differ diff --git a/png/synology-download-station.png b/png/synology-download-station.png index d235553f..a4a995f5 100644 Binary files a/png/synology-download-station.png and b/png/synology-download-station.png differ diff --git a/png/synology-drive-server.png b/png/synology-drive-server.png index 99b78f7a..e0304ff7 100644 Binary files a/png/synology-drive-server.png and b/png/synology-drive-server.png differ diff --git a/png/synology-drive.png b/png/synology-drive.png index 99b78f7a..e0304ff7 100644 Binary files a/png/synology-drive.png and b/png/synology-drive.png differ diff --git a/png/synology-dsm.png b/png/synology-dsm.png index 11587fcb..2ffe3b6e 100644 Binary files a/png/synology-dsm.png and b/png/synology-dsm.png differ diff --git a/png/synology-file-station.png b/png/synology-file-station.png index b4e625b7..32a7bede 100644 Binary files a/png/synology-file-station.png and b/png/synology-file-station.png differ diff --git a/png/synology-mail-plus.png b/png/synology-mail-plus.png index ab7eb3d5..081addd3 100644 Binary files a/png/synology-mail-plus.png and b/png/synology-mail-plus.png differ diff --git a/png/synology-mail-station.png b/png/synology-mail-station.png index a9c93c20..2c496023 100644 Binary files a/png/synology-mail-station.png and b/png/synology-mail-station.png differ diff --git a/png/synology-note-station.png b/png/synology-note-station.png index 90f0565b..a7111376 100644 Binary files a/png/synology-note-station.png and b/png/synology-note-station.png differ diff --git a/png/synology-office.png b/png/synology-office.png index 7e833840..59955f22 100644 Binary files a/png/synology-office.png and b/png/synology-office.png differ diff --git a/png/synology-pdfviewer.png b/png/synology-pdfviewer.png index 2ade6f14..d2e272dc 100644 Binary files a/png/synology-pdfviewer.png and b/png/synology-pdfviewer.png differ diff --git a/png/synology-photo-station.png b/png/synology-photo-station.png index 8dc7f238..9dd5e904 100644 Binary files a/png/synology-photo-station.png and b/png/synology-photo-station.png differ diff --git a/png/synology-photos.png b/png/synology-photos.png index 8083e193..a4579d3e 100644 Binary files a/png/synology-photos.png and b/png/synology-photos.png differ diff --git a/png/synology-surveillance-station.png b/png/synology-surveillance-station.png index a3bf8503..0358966e 100644 Binary files a/png/synology-surveillance-station.png and b/png/synology-surveillance-station.png differ diff --git a/png/synology-text-editor.png b/png/synology-text-editor.png index f3794ef8..6f877842 100644 Binary files a/png/synology-text-editor.png and b/png/synology-text-editor.png differ diff --git a/png/synology-video-station.png b/png/synology-video-station.png index 02f4cf40..dd2f50a0 100644 Binary files a/png/synology-video-station.png and b/png/synology-video-station.png differ diff --git a/png/synology-webstation.png b/png/synology-webstation.png index 6966b8f5..186e7c07 100644 Binary files a/png/synology-webstation.png and b/png/synology-webstation.png differ diff --git a/png/synology.png b/png/synology.png index ff9c765a..7619d0f4 100644 Binary files a/png/synology.png and b/png/synology.png differ diff --git a/png/taiga.png b/png/taiga.png index f8fb3229..9e22ce9d 100644 Binary files a/png/taiga.png and b/png/taiga.png differ diff --git a/png/tailscale-light.png b/png/tailscale-light.png index 57e0350e..980ac874 100644 Binary files a/png/tailscale-light.png and b/png/tailscale-light.png differ diff --git a/png/tailscale.png b/png/tailscale.png index aab36054..a2353c75 100644 Binary files a/png/tailscale.png and b/png/tailscale.png differ diff --git a/png/tandoor.png b/png/tandoor.png index 581d35ec..60bdaad7 100644 Binary files a/png/tandoor.png and b/png/tandoor.png differ diff --git a/png/tandoorrecipes.png b/png/tandoorrecipes.png index 581d35ec..60bdaad7 100644 Binary files a/png/tandoorrecipes.png and b/png/tandoorrecipes.png differ diff --git a/png/tanoshi.png b/png/tanoshi.png index 09ec3e8b..b0ca574c 100644 Binary files a/png/tanoshi.png and b/png/tanoshi.png differ diff --git a/png/tar1090.png b/png/tar1090.png index d895300d..c21fd821 100644 Binary files a/png/tar1090.png and b/png/tar1090.png differ diff --git a/png/taskcafe.png b/png/taskcafe.png index 0b56366d..fc7762b0 100644 Binary files a/png/taskcafe.png and b/png/taskcafe.png differ diff --git a/png/tasmota-light.png b/png/tasmota-light.png index 53909c05..6d7c500e 100644 Binary files a/png/tasmota-light.png and b/png/tasmota-light.png differ diff --git a/png/tasmota.png b/png/tasmota.png index 521563a8..0321890c 100644 Binary files a/png/tasmota.png and b/png/tasmota.png differ diff --git a/png/tautulli.png b/png/tautulli.png index 0787b38a..c8a84c13 100644 Binary files a/png/tautulli.png and b/png/tautulli.png differ diff --git a/png/tdarr.png b/png/tdarr.png index 22015bd6..b507192c 100644 Binary files a/png/tdarr.png and b/png/tdarr.png differ diff --git a/png/teamcity.png b/png/teamcity.png index f38fc15c..ad59d0d4 100644 Binary files a/png/teamcity.png and b/png/teamcity.png differ diff --git a/png/technitium.png b/png/technitium.png index 138e741c..09d325f7 100644 Binary files a/png/technitium.png and b/png/technitium.png differ diff --git a/png/teedy.png b/png/teedy.png index ce811a54..9cbc395c 100644 Binary files a/png/teedy.png and b/png/teedy.png differ diff --git a/png/telegraf.png b/png/telegraf.png index 728964d6..c609ca1f 100644 Binary files a/png/telegraf.png and b/png/telegraf.png differ diff --git a/png/telegram.png b/png/telegram.png index 65fef54d..c0db5118 100644 Binary files a/png/telegram.png and b/png/telegram.png differ diff --git a/png/teleport.png b/png/teleport.png index 732cabd9..b128b6f2 100644 Binary files a/png/teleport.png and b/png/teleport.png differ diff --git a/png/tenda.png b/png/tenda.png index 1cb4691b..8628ac51 100644 Binary files a/png/tenda.png and b/png/tenda.png differ diff --git a/png/terminal.png b/png/terminal.png index f3bbd99f..f1ffe015 100644 Binary files a/png/terminal.png and b/png/terminal.png differ diff --git a/png/terraform.png b/png/terraform.png index dff523c2..1842872f 100644 Binary files a/png/terraform.png and b/png/terraform.png differ diff --git a/png/teslamate.png b/png/teslamate.png index 7422347f..48711858 100644 Binary files a/png/teslamate.png and b/png/teslamate.png differ diff --git a/png/thanos.png b/png/thanos.png index 28744f46..ad7b2a39 100644 Binary files a/png/thanos.png and b/png/thanos.png differ diff --git a/png/the-pirate-bay.png b/png/the-pirate-bay.png index 6c7de87f..bd74a9e1 100644 Binary files a/png/the-pirate-bay.png and b/png/the-pirate-bay.png differ diff --git a/png/the-proxy-bay.png b/png/the-proxy-bay.png index 6c7de87f..bd74a9e1 100644 Binary files a/png/the-proxy-bay.png and b/png/the-proxy-bay.png differ diff --git a/png/theia-light.png b/png/theia-light.png index 4a8b35f8..b28c0c06 100644 Binary files a/png/theia-light.png and b/png/theia-light.png differ diff --git a/png/theia.png b/png/theia.png index b9776142..0fcad4d8 100644 Binary files a/png/theia.png and b/png/theia.png differ diff --git a/png/thelounge.png b/png/thelounge.png index 78f7b6f1..fee5edfa 100644 Binary files a/png/thelounge.png and b/png/thelounge.png differ diff --git a/png/themepark.png b/png/themepark.png index 7c535480..74d23123 100644 Binary files a/png/themepark.png and b/png/themepark.png differ diff --git a/png/theodinproject.png b/png/theodinproject.png index 9b4d89c1..4de0012a 100644 Binary files a/png/theodinproject.png and b/png/theodinproject.png differ diff --git a/png/thingsboard.png b/png/thingsboard.png index d8734a33..bc4ba6fe 100644 Binary files a/png/thingsboard.png and b/png/thingsboard.png differ diff --git a/png/thunderbird.png b/png/thunderbird.png index 7a1ce362..7f2bb309 100644 Binary files a/png/thunderbird.png and b/png/thunderbird.png differ diff --git a/png/thunderhub-light.png b/png/thunderhub-light.png index a1a3e6ba..0efd60f5 100644 Binary files a/png/thunderhub-light.png and b/png/thunderhub-light.png differ diff --git a/png/thunderhub.png b/png/thunderhub.png index 916e6495..cd30b007 100644 Binary files a/png/thunderhub.png and b/png/thunderhub.png differ diff --git a/png/tiktok-light.png b/png/tiktok-light.png index fd2f965e..440155fe 100644 Binary files a/png/tiktok-light.png and b/png/tiktok-light.png differ diff --git a/png/tiktok.png b/png/tiktok.png index 5549ca10..bcd446de 100644 Binary files a/png/tiktok.png and b/png/tiktok.png differ diff --git a/png/timemachines-light.png b/png/timemachines-light.png index 65df78f0..aab19b31 100644 Binary files a/png/timemachines-light.png and b/png/timemachines-light.png differ diff --git a/png/timemachines.png b/png/timemachines.png index e6074d3f..738e3bb6 100644 Binary files a/png/timemachines.png and b/png/timemachines.png differ diff --git a/png/timetagger-light.png b/png/timetagger-light.png index cdc84cbc..5d4b3d52 100644 Binary files a/png/timetagger-light.png and b/png/timetagger-light.png differ diff --git a/png/timetagger.png b/png/timetagger.png index 44896dcc..c61e4e94 100644 Binary files a/png/timetagger.png and b/png/timetagger.png differ diff --git a/png/tinypilot.png b/png/tinypilot.png index 83280cb8..87bb2533 100644 Binary files a/png/tinypilot.png and b/png/tinypilot.png differ diff --git a/png/tinytinyrss.png b/png/tinytinyrss.png index b4ff6bf5..1b22e446 100644 Binary files a/png/tinytinyrss.png and b/png/tinytinyrss.png differ diff --git a/png/tipi.png b/png/tipi.png index a549e790..3183f823 100644 Binary files a/png/tipi.png and b/png/tipi.png differ diff --git a/png/todoist.png b/png/todoist.png index 4f3e129d..3685387a 100644 Binary files a/png/todoist.png and b/png/todoist.png differ diff --git a/png/tooljet.png b/png/tooljet.png index 6d4f941c..3aa0c5ed 100644 Binary files a/png/tooljet.png and b/png/tooljet.png differ diff --git a/png/tp-link.png b/png/tp-link.png index afa40e28..10875f4e 100644 Binary files a/png/tp-link.png and b/png/tp-link.png differ diff --git a/png/traccar.png b/png/traccar.png index fdba8114..8910a5c4 100644 Binary files a/png/traccar.png and b/png/traccar.png differ diff --git a/png/traefik.png b/png/traefik.png index b1ecda95..7e068f29 100644 Binary files a/png/traefik.png and b/png/traefik.png differ diff --git a/png/traggo.png b/png/traggo.png index 3c21ef5f..2cd83533 100644 Binary files a/png/traggo.png and b/png/traggo.png differ diff --git a/png/trakt.png b/png/trakt.png index cf294cf9..d2af8b0e 100644 Binary files a/png/trakt.png and b/png/trakt.png differ diff --git a/png/trash-guides.png b/png/trash-guides.png index 3eee3885..8b90714e 100644 Binary files a/png/trash-guides.png and b/png/trash-guides.png differ diff --git a/png/trilium.png b/png/trilium.png index bc599ca7..13a54c25 100644 Binary files a/png/trilium.png and b/png/trilium.png differ diff --git a/png/trudesk.png b/png/trudesk.png index eceadaaa..1f530989 100644 Binary files a/png/trudesk.png and b/png/trudesk.png differ diff --git a/png/truenas-core.png b/png/truenas-core.png index cb37a128..586c67cd 100644 Binary files a/png/truenas-core.png and b/png/truenas-core.png differ diff --git a/png/truenas-enterprise.png b/png/truenas-enterprise.png index b4edd635..47645668 100644 Binary files a/png/truenas-enterprise.png and b/png/truenas-enterprise.png differ diff --git a/png/truenas-scale.png b/png/truenas-scale.png index 3f645ca9..f38942c5 100644 Binary files a/png/truenas-scale.png and b/png/truenas-scale.png differ diff --git a/png/truenas.png b/png/truenas.png index cb37a128..586c67cd 100644 Binary files a/png/truenas.png and b/png/truenas.png differ diff --git a/png/tube-archivist-light.png b/png/tube-archivist-light.png index 2faec469..9008943a 100644 Binary files a/png/tube-archivist-light.png and b/png/tube-archivist-light.png differ diff --git a/png/tube-archivist.png b/png/tube-archivist.png index d096521f..9c84ead7 100644 Binary files a/png/tube-archivist.png and b/png/tube-archivist.png differ diff --git a/png/tubesync.png b/png/tubesync.png index 302f1904..56a00ddd 100644 Binary files a/png/tubesync.png and b/png/tubesync.png differ diff --git a/png/turbopack-light.png b/png/turbopack-light.png index a8341122..293ccd14 100644 Binary files a/png/turbopack-light.png and b/png/turbopack-light.png differ diff --git a/png/turbopack.png b/png/turbopack.png index 683b0035..4ab7cf1b 100644 Binary files a/png/turbopack.png and b/png/turbopack.png differ diff --git a/png/tux.png b/png/tux.png index 7b04dcc3..87c66a03 100644 Binary files a/png/tux.png and b/png/tux.png differ diff --git a/png/tvheadend.png b/png/tvheadend.png index ca2d17e5..10ed9dc5 100644 Binary files a/png/tvheadend.png and b/png/tvheadend.png differ diff --git a/png/tvp-vod.png b/png/tvp-vod.png index b2c77fec..ec4f55e6 100644 Binary files a/png/tvp-vod.png and b/png/tvp-vod.png differ diff --git a/png/twitch.png b/png/twitch.png index 74f2e354..fb5503f0 100644 Binary files a/png/twitch.png and b/png/twitch.png differ diff --git a/png/twitter.png b/png/twitter.png index c4163115..2be176b1 100644 Binary files a/png/twitter.png and b/png/twitter.png differ diff --git a/png/typescript.png b/png/typescript.png index 596bcae5..6a72efbe 100644 Binary files a/png/typescript.png and b/png/typescript.png differ diff --git a/png/typo3.png b/png/typo3.png index 00dbb2a3..43b4f097 100644 Binary files a/png/typo3.png and b/png/typo3.png differ diff --git a/png/ubiquiti-networks.png b/png/ubiquiti-networks.png index ae11204d..820c55f3 100644 Binary files a/png/ubiquiti-networks.png and b/png/ubiquiti-networks.png differ diff --git a/png/ubiquiti.png b/png/ubiquiti.png index ae11204d..820c55f3 100644 Binary files a/png/ubiquiti.png and b/png/ubiquiti.png differ diff --git a/png/ubuntu-alt.png b/png/ubuntu-alt.png index 1b8d1973..ff16e477 100644 Binary files a/png/ubuntu-alt.png and b/png/ubuntu-alt.png differ diff --git a/png/ubuntu.png b/png/ubuntu.png index f3620765..7e4a4192 100644 Binary files a/png/ubuntu.png and b/png/ubuntu.png differ diff --git a/png/uc-browser.png b/png/uc-browser.png index 0575ee57..27e6d260 100644 Binary files a/png/uc-browser.png and b/png/uc-browser.png differ diff --git a/png/udemy.png b/png/udemy.png index 7759d253..ee0d30f1 100644 Binary files a/png/udemy.png and b/png/udemy.png differ diff --git a/png/ultimate-guitar.png b/png/ultimate-guitar.png index e88df26f..16fbd4a3 100644 Binary files a/png/ultimate-guitar.png and b/png/ultimate-guitar.png differ diff --git a/png/umami-analytics-light.png b/png/umami-analytics-light.png index 71f41e9e..541211d3 100644 Binary files a/png/umami-analytics-light.png and b/png/umami-analytics-light.png differ diff --git a/png/umami-analytics.png b/png/umami-analytics.png index 7b87c1c3..0ad03e0d 100644 Binary files a/png/umami-analytics.png and b/png/umami-analytics.png differ diff --git a/png/umami-light.png b/png/umami-light.png index 71f41e9e..541211d3 100644 Binary files a/png/umami-light.png and b/png/umami-light.png differ diff --git a/png/umami.png b/png/umami.png index 7b87c1c3..0ad03e0d 100644 Binary files a/png/umami.png and b/png/umami.png differ diff --git a/png/umbrel.png b/png/umbrel.png index de5b5b6f..76390667 100644 Binary files a/png/umbrel.png and b/png/umbrel.png differ diff --git a/png/unifi-controller.png b/png/unifi-controller.png index 295e545a..35b046ab 100644 Binary files a/png/unifi-controller.png and b/png/unifi-controller.png differ diff --git a/png/unifi-protect.png b/png/unifi-protect.png index f7562e58..0af359ab 100644 Binary files a/png/unifi-protect.png and b/png/unifi-protect.png differ diff --git a/png/unifi.png b/png/unifi.png index ae11204d..820c55f3 100644 Binary files a/png/unifi.png and b/png/unifi.png differ diff --git a/png/universal-media-server.png b/png/universal-media-server.png index dc2dce9f..301d1ff8 100644 Binary files a/png/universal-media-server.png and b/png/universal-media-server.png differ diff --git a/png/unmanic.png b/png/unmanic.png index 58bebd90..2288c8b3 100644 Binary files a/png/unmanic.png and b/png/unmanic.png differ diff --git a/png/unraid.png b/png/unraid.png index 484ce4e8..44e6d324 100644 Binary files a/png/unraid.png and b/png/unraid.png differ diff --git a/png/untangle.png b/png/untangle.png index bba2b2f5..e6756610 100644 Binary files a/png/untangle.png and b/png/untangle.png differ diff --git a/png/updog.png b/png/updog.png index 3ffb11a6..22fdd211 100644 Binary files a/png/updog.png and b/png/updog.png differ diff --git a/png/ups.png b/png/ups.png index e25759a3..3ce7a7eb 100644 Binary files a/png/ups.png and b/png/ups.png differ diff --git a/png/upsnap.png b/png/upsnap.png index 49baf23c..c1746b84 100644 Binary files a/png/upsnap.png and b/png/upsnap.png differ diff --git a/png/uptime-kuma.png b/png/uptime-kuma.png index 114efb9b..e526620f 100644 Binary files a/png/uptime-kuma.png and b/png/uptime-kuma.png differ diff --git a/png/urbackup-server.png b/png/urbackup-server.png index fbc67337..40458c81 100644 Binary files a/png/urbackup-server.png and b/png/urbackup-server.png differ diff --git a/png/urbackup.png b/png/urbackup.png index fbc67337..40458c81 100644 Binary files a/png/urbackup.png and b/png/urbackup.png differ diff --git a/png/valetudo.png b/png/valetudo.png index cb04992b..1fa0979b 100644 Binary files a/png/valetudo.png and b/png/valetudo.png differ diff --git a/png/vault-light.png b/png/vault-light.png index c27e21c7..49d30354 100644 Binary files a/png/vault-light.png and b/png/vault-light.png differ diff --git a/png/vaultwarden-light.png b/png/vaultwarden-light.png index 5f3da4b1..a6fe5523 100644 Binary files a/png/vaultwarden-light.png and b/png/vaultwarden-light.png differ diff --git a/png/vaultwarden.png b/png/vaultwarden.png index eadb5b9e..5dd08118 100644 Binary files a/png/vaultwarden.png and b/png/vaultwarden.png differ diff --git a/png/veeam.png b/png/veeam.png index ea0c9446..66dbf673 100644 Binary files a/png/veeam.png and b/png/veeam.png differ diff --git a/png/vercel-light.png b/png/vercel-light.png index 6a639808..7e28f7e2 100644 Binary files a/png/vercel-light.png and b/png/vercel-light.png differ diff --git a/png/vercel.png b/png/vercel.png index 2e363027..2092843e 100644 Binary files a/png/vercel.png and b/png/vercel.png differ diff --git a/png/verizon.png b/png/verizon.png index abdbe5b3..82c120c5 100644 Binary files a/png/verizon.png and b/png/verizon.png differ diff --git a/png/vi.png b/png/vi.png index 0a215ffb..94f330ad 100644 Binary files a/png/vi.png and b/png/vi.png differ diff --git a/png/vikunja.png b/png/vikunja.png index 476a4339..10e33212 100644 Binary files a/png/vikunja.png and b/png/vikunja.png differ diff --git a/png/virgin-media.png b/png/virgin-media.png index a0de77b3..67d67087 100644 Binary files a/png/virgin-media.png and b/png/virgin-media.png differ diff --git a/png/virtualmin.png b/png/virtualmin.png index 025517a0..4b39d841 100644 Binary files a/png/virtualmin.png and b/png/virtualmin.png differ diff --git a/png/virtualradarserver.png b/png/virtualradarserver.png index e9eb1fef..f73d79c7 100644 Binary files a/png/virtualradarserver.png and b/png/virtualradarserver.png differ diff --git a/png/viseron.png b/png/viseron.png index 361b0c91..c9409749 100644 Binary files a/png/viseron.png and b/png/viseron.png differ diff --git a/png/vmware-esxi.png b/png/vmware-esxi.png index 187e6fc9..3c9052ce 100644 Binary files a/png/vmware-esxi.png and b/png/vmware-esxi.png differ diff --git a/png/vmware-horizon.png b/png/vmware-horizon.png index 5f08013d..3e7b8705 100644 Binary files a/png/vmware-horizon.png and b/png/vmware-horizon.png differ diff --git a/png/vmware-vcenter.png b/png/vmware-vcenter.png index 187e6fc9..3c9052ce 100644 Binary files a/png/vmware-vcenter.png and b/png/vmware-vcenter.png differ diff --git a/png/vmware-workstation.png b/png/vmware-workstation.png index 75bcca89..35af6e35 100644 Binary files a/png/vmware-workstation.png and b/png/vmware-workstation.png differ diff --git a/png/vmware.png b/png/vmware.png index 0fcca2ef..cdd3f59c 100644 Binary files a/png/vmware.png and b/png/vmware.png differ diff --git a/png/voip-info.png b/png/voip-info.png index d843ef59..5cba51cf 100644 Binary files a/png/voip-info.png and b/png/voip-info.png differ diff --git a/png/voip-ms.png b/png/voip-ms.png index 622614c6..6b7ff9e2 100644 Binary files a/png/voip-ms.png and b/png/voip-ms.png differ diff --git a/png/voron.png b/png/voron.png index dd5c5a5b..f415627e 100644 Binary files a/png/voron.png and b/png/voron.png differ diff --git a/png/vscode.png b/png/vscode.png index 4ac1db21..af38c2d3 100644 Binary files a/png/vscode.png and b/png/vscode.png differ diff --git a/png/vultr.png b/png/vultr.png index 2ae7e17f..a0e982b5 100644 Binary files a/png/vultr.png and b/png/vultr.png differ diff --git a/png/vuplus.png b/png/vuplus.png index 8af3a8aa..311fbe04 100644 Binary files a/png/vuplus.png and b/png/vuplus.png differ diff --git a/png/wakapi.png b/png/wakapi.png index 4603f7dc..96886819 100644 Binary files a/png/wakapi.png and b/png/wakapi.png differ diff --git a/png/wakatime-light.png b/png/wakatime-light.png index 850ef9f6..e5320628 100644 Binary files a/png/wakatime-light.png and b/png/wakatime-light.png differ diff --git a/png/wakatime.png b/png/wakatime.png index 94f9bd7d..9aea1b23 100644 Binary files a/png/wakatime.png and b/png/wakatime.png differ diff --git a/png/wallabag.png b/png/wallabag.png index 829a2da9..4835d027 100644 Binary files a/png/wallabag.png and b/png/wallabag.png differ diff --git a/png/wanikani.png b/png/wanikani.png index 5ba2eaf8..d0fb8286 100644 Binary files a/png/wanikani.png and b/png/wanikani.png differ diff --git a/png/ward.png b/png/ward.png index 779f19f6..68ecfbbb 100644 Binary files a/png/ward.png and b/png/ward.png differ diff --git a/png/watcher.png b/png/watcher.png index f489ad57..9c99c99c 100644 Binary files a/png/watcher.png and b/png/watcher.png differ diff --git a/png/watchtower.png b/png/watchtower.png index e0ea6aa0..acc25e78 100644 Binary files a/png/watchtower.png and b/png/watchtower.png differ diff --git a/png/watchyourlan.png b/png/watchyourlan.png index a5aa365e..fd73e8d6 100644 Binary files a/png/watchyourlan.png and b/png/watchyourlan.png differ diff --git a/png/waze.png b/png/waze.png index 9a9691d6..cdd47677 100644 Binary files a/png/waze.png and b/png/waze.png differ diff --git a/png/wazuh.png b/png/wazuh.png index 8fbfab34..e595652d 100644 Binary files a/png/wazuh.png and b/png/wazuh.png differ diff --git a/png/wbo.png b/png/wbo.png index 4427c6f4..2982d14d 100644 Binary files a/png/wbo.png and b/png/wbo.png differ diff --git a/png/web-whisper.png b/png/web-whisper.png index f05e332d..92f271a9 100644 Binary files a/png/web-whisper.png and b/png/web-whisper.png differ diff --git a/png/webdav.png b/png/webdav.png index 71b63646..5a62b09a 100644 Binary files a/png/webdav.png and b/png/webdav.png differ diff --git a/png/webhook.png b/png/webhook.png index 378dcb98..aaf6efb4 100644 Binary files a/png/webhook.png and b/png/webhook.png differ diff --git a/png/webhookd.png b/png/webhookd.png index 51b9480a..495cc05f 100644 Binary files a/png/webhookd.png and b/png/webhookd.png differ diff --git a/png/webkit.png b/png/webkit.png index c68d9ec2..f9939e0d 100644 Binary files a/png/webkit.png and b/png/webkit.png differ diff --git a/png/webmin.png b/png/webmin.png index 42f902fd..956a0540 100644 Binary files a/png/webmin.png and b/png/webmin.png differ diff --git a/png/webtop.png b/png/webtop.png index 1715c953..ebb34e69 100644 Binary files a/png/webtop.png and b/png/webtop.png differ diff --git a/png/webtorrent.png b/png/webtorrent.png index 9bd706b9..f8d833a7 100644 Binary files a/png/webtorrent.png and b/png/webtorrent.png differ diff --git a/png/wekan.png b/png/wekan.png index 2bd43586..9c9cb40e 100644 Binary files a/png/wekan.png and b/png/wekan.png differ diff --git a/png/wetty.png b/png/wetty.png index 47cab0a3..5a04e7b1 100644 Binary files a/png/wetty.png and b/png/wetty.png differ diff --git a/png/wg-gen-web-light.png b/png/wg-gen-web-light.png index 115b523e..f0c17f8b 100644 Binary files a/png/wg-gen-web-light.png and b/png/wg-gen-web-light.png differ diff --git a/png/wg-gen-web.png b/png/wg-gen-web.png index 897cf979..e76da21f 100644 Binary files a/png/wg-gen-web.png and b/png/wg-gen-web.png differ diff --git a/png/wger.png b/png/wger.png index 4c514e9d..2bc1928d 100644 Binary files a/png/wger.png and b/png/wger.png differ diff --git a/png/whisparr.png b/png/whisparr.png index d175a5e1..f45bdbb3 100644 Binary files a/png/whisparr.png and b/png/whisparr.png differ diff --git a/png/wikijs.png b/png/wikijs.png index 6fa18194..7f41b123 100644 Binary files a/png/wikijs.png and b/png/wikijs.png differ diff --git a/png/windows-10.png b/png/windows-10.png index 6af8388c..3a90a041 100644 Binary files a/png/windows-10.png and b/png/windows-10.png differ diff --git a/png/windows-11.png b/png/windows-11.png index a35d78ce..e82db298 100644 Binary files a/png/windows-11.png and b/png/windows-11.png differ diff --git a/png/windows-7.png b/png/windows-7.png index 1d4d00d6..eb1c98de 100644 Binary files a/png/windows-7.png and b/png/windows-7.png differ diff --git a/png/windows-95.png b/png/windows-95.png index 85eb16e4..da206506 100644 Binary files a/png/windows-95.png and b/png/windows-95.png differ diff --git a/png/windows-98.png b/png/windows-98.png index 100d38a3..f84e0669 100644 Binary files a/png/windows-98.png and b/png/windows-98.png differ diff --git a/png/windows-vista.png b/png/windows-vista.png index e756e3f3..01cadf76 100644 Binary files a/png/windows-vista.png and b/png/windows-vista.png differ diff --git a/png/windows-xp.png b/png/windows-xp.png index fb6b8d1c..bf2e6f0b 100644 Binary files a/png/windows-xp.png and b/png/windows-xp.png differ diff --git a/png/wireguard.png b/png/wireguard.png index 010f67f2..b8181d66 100644 Binary files a/png/wireguard.png and b/png/wireguard.png differ diff --git a/png/wizarr.png b/png/wizarr.png index 508fbdd8..841afd02 100644 Binary files a/png/wizarr.png and b/png/wizarr.png differ diff --git a/png/wled.png b/png/wled.png index 72bf2dec..79b956fd 100644 Binary files a/png/wled.png and b/png/wled.png differ diff --git a/png/woodpecker-ci-light.png b/png/woodpecker-ci-light.png index 2304ea01..560ea206 100644 Binary files a/png/woodpecker-ci-light.png and b/png/woodpecker-ci-light.png differ diff --git a/png/woodpecker-ci.png b/png/woodpecker-ci.png index af326480..51fcc8e8 100644 Binary files a/png/woodpecker-ci.png and b/png/woodpecker-ci.png differ diff --git a/png/wordpress.png b/png/wordpress.png index 573e0b93..4b84ac31 100644 Binary files a/png/wordpress.png and b/png/wordpress.png differ diff --git a/png/workadventure.png b/png/workadventure.png index efb6a9bc..97e61765 100644 Binary files a/png/workadventure.png and b/png/workadventure.png differ diff --git a/png/xbackbone.png b/png/xbackbone.png index bb8ea602..9f7fe4d8 100644 Binary files a/png/xbackbone.png and b/png/xbackbone.png differ diff --git a/png/xcp-ng.png b/png/xcp-ng.png index 3e3f09ba..1a217ba4 100644 Binary files a/png/xcp-ng.png and b/png/xcp-ng.png differ diff --git a/png/xen-orchestra.png b/png/xen-orchestra.png index eabc362d..949d1444 100644 Binary files a/png/xen-orchestra.png and b/png/xen-orchestra.png differ diff --git a/png/xmr.png b/png/xmr.png index 2a544d9f..1b9d76a2 100644 Binary files a/png/xmr.png and b/png/xmr.png differ diff --git a/png/xmrig.png b/png/xmrig.png index 5cc1cf90..25bb3575 100644 Binary files a/png/xmrig.png and b/png/xmrig.png differ diff --git a/png/xwiki.png b/png/xwiki.png index 98cc88ee..103ef019 100644 Binary files a/png/xwiki.png and b/png/xwiki.png differ diff --git a/png/yacht-light.png b/png/yacht-light.png index 945282fa..f5c9353c 100644 Binary files a/png/yacht-light.png and b/png/yacht-light.png differ diff --git a/png/yacht.png b/png/yacht.png index 4c1e1e53..ad7df056 100644 Binary files a/png/yacht.png and b/png/yacht.png differ diff --git a/png/yahoo-mail.png b/png/yahoo-mail.png index 22f616bf..bc1588ee 100644 Binary files a/png/yahoo-mail.png and b/png/yahoo-mail.png differ diff --git a/png/yahoo.png b/png/yahoo.png index 7992a4bd..7b2fe7e0 100644 Binary files a/png/yahoo.png and b/png/yahoo.png differ diff --git a/png/yandex.png b/png/yandex.png index 16440418..2100d617 100644 Binary files a/png/yandex.png and b/png/yandex.png differ diff --git a/png/yarn-social.png b/png/yarn-social.png index 3d595455..c342a5de 100644 Binary files a/png/yarn-social.png and b/png/yarn-social.png differ diff --git a/png/ycombinator.png b/png/ycombinator.png index 091db18f..a94c91da 100644 Binary files a/png/ycombinator.png and b/png/ycombinator.png differ diff --git a/png/ymarks.png b/png/ymarks.png index 3ed1be85..8d4d3a21 100644 Binary files a/png/ymarks.png and b/png/ymarks.png differ diff --git a/png/ynab.png b/png/ynab.png index 8da77c07..f4c02340 100644 Binary files a/png/ynab.png and b/png/ynab.png differ diff --git a/png/your-spotify.png b/png/your-spotify.png index 175ce91a..63cefbc4 100644 Binary files a/png/your-spotify.png and b/png/your-spotify.png differ diff --git a/png/yourls.png b/png/yourls.png index 4bfecb30..6cbc43a4 100644 Binary files a/png/yourls.png and b/png/yourls.png differ diff --git a/png/youtube-kids.png b/png/youtube-kids.png index 43c55586..997157db 100644 Binary files a/png/youtube-kids.png and b/png/youtube-kids.png differ diff --git a/png/youtube-music.png b/png/youtube-music.png index c6bd449a..ef5fcd43 100644 Binary files a/png/youtube-music.png and b/png/youtube-music.png differ diff --git a/png/youtube.png b/png/youtube.png index 6153f70b..46468604 100644 Binary files a/png/youtube.png and b/png/youtube.png differ diff --git a/png/youtubedl.png b/png/youtubedl.png index 45d9eb4b..8055104b 100644 Binary files a/png/youtubedl.png and b/png/youtubedl.png differ diff --git a/png/yts.png b/png/yts.png index 6b54d110..ade05d18 100644 Binary files a/png/yts.png and b/png/yts.png differ diff --git a/png/yunohost-light.png b/png/yunohost-light.png index 9c9c7464..32caab8c 100644 Binary files a/png/yunohost-light.png and b/png/yunohost-light.png differ diff --git a/png/yunohost.png b/png/yunohost.png index 1bdffcf6..05aad0cc 100644 Binary files a/png/yunohost.png and b/png/yunohost.png differ diff --git a/png/zabbix.png b/png/zabbix.png index f5b77daa..112bee5a 100644 Binary files a/png/zabbix.png and b/png/zabbix.png differ diff --git a/png/zabka.png b/png/zabka.png index 47174d03..b83ecb7a 100644 Binary files a/png/zabka.png and b/png/zabka.png differ diff --git a/png/zammad.png b/png/zammad.png index 48ed696d..a1268b58 100644 Binary files a/png/zammad.png and b/png/zammad.png differ diff --git a/png/zendesk.png b/png/zendesk.png index 0b097eb4..ae4e4c58 100644 Binary files a/png/zendesk.png and b/png/zendesk.png differ diff --git a/png/zigbee2mqtt.png b/png/zigbee2mqtt.png index 9f48284d..d72d7c04 100644 Binary files a/png/zigbee2mqtt.png and b/png/zigbee2mqtt.png differ diff --git a/png/zipline-light.png b/png/zipline-light.png index 72bf4506..c7fee2f1 100644 Binary files a/png/zipline-light.png and b/png/zipline-light.png differ diff --git a/png/zipline.png b/png/zipline.png index 4d9e110c..abd88497 100644 Binary files a/png/zipline.png and b/png/zipline.png differ diff --git a/png/zohomail.png b/png/zohomail.png index 1c6284c3..489664f2 100644 Binary files a/png/zohomail.png and b/png/zohomail.png differ diff --git a/png/zoneminder.png b/png/zoneminder.png index 6255efcc..4022e8f9 100644 Binary files a/png/zoneminder.png and b/png/zoneminder.png differ diff --git a/png/zulip.png b/png/zulip.png index 62452862..60d01b75 100644 Binary files a/png/zulip.png and b/png/zulip.png differ diff --git a/png/zwavejs2mqtt.png b/png/zwavejs2mqtt.png index 3ac6e664..20f3e399 100644 Binary files a/png/zwavejs2mqtt.png and b/png/zwavejs2mqtt.png differ diff --git a/svg/act.svg b/svg/act.svg index 6ab5bc12..398a417c 100644 --- a/svg/act.svg +++ b/svg/act.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/svg/adguard-home.svg b/svg/adguard-home.svg index 06dd3fdd..bf4b0eae 100644 --- a/svg/adguard-home.svg +++ b/svg/adguard-home.svg @@ -1,20 +1 @@ - - - - logo@2x - Created with Sketch. - - \ No newline at end of file + \ No newline at end of file diff --git a/svg/airsonic.svg b/svg/airsonic.svg index b32fd465..5f5749eb 100644 --- a/svg/airsonic.svg +++ b/svg/airsonic.svg @@ -1,174 +1 @@ - - - - - - - - - - image/svg+xml - - - - - - - - - - - - - - - - - - - - - - + \ No newline at end of file diff --git a/svg/airtel.svg b/svg/airtel.svg index d5eb24c2..93d8b335 100644 --- a/svg/airtel.svg +++ b/svg/airtel.svg @@ -1,22 +1 @@ - - Bharti_Airtel_Limited_logo-svg - - - - - - - - - - - - - - - - - - \ No newline at end of file + \ No newline at end of file diff --git a/svg/albert-heijn.svg b/svg/albert-heijn.svg index 4686be99..b7600b29 100644 --- a/svg/albert-heijn.svg +++ b/svg/albert-heijn.svg @@ -1,44 +1 @@ - - - - - - - - - image/svg+xml - - - - - - - - - - - - + \ No newline at end of file diff --git a/svg/alertmanager.svg b/svg/alertmanager.svg index 5c51f66d..8a359470 100644 --- a/svg/alertmanager.svg +++ b/svg/alertmanager.svg @@ -1,50 +1 @@ - - - -image/svg+xml \ No newline at end of file + \ No newline at end of file diff --git a/svg/alma.svg b/svg/alma.svg index b2e050ae..94ef438c 100644 --- a/svg/alma.svg +++ b/svg/alma.svg @@ -1,16 +1 @@ - - - - - - - - - - - - - - + \ No newline at end of file diff --git a/svg/amazon.svg b/svg/amazon.svg index 77a47d39..7ca88ac1 100644 --- a/svg/amazon.svg +++ b/svg/amazon.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/svg/amd-light.svg b/svg/amd-light.svg index 8e262e86..6d12bca6 100644 --- a/svg/amd-light.svg +++ b/svg/amd-light.svg @@ -1,8 +1 @@ - - AMD_Logo-svg - - - \ No newline at end of file + \ No newline at end of file diff --git a/svg/amd.svg b/svg/amd.svg index b975aa4a..c48c9734 100644 --- a/svg/amd.svg +++ b/svg/amd.svg @@ -1,8 +1 @@ - - AMD_Logo-svg - - - \ No newline at end of file + \ No newline at end of file diff --git a/svg/android-auto.svg b/svg/android-auto.svg index f6162991..898655d3 100644 --- a/svg/android-auto.svg +++ b/svg/android-auto.svg @@ -1,105 +1 @@ - - - - - - - - - - -]> - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + \ No newline at end of file diff --git a/svg/android-robot.svg b/svg/android-robot.svg index f5349180..15f5f0d0 100644 --- a/svg/android-robot.svg +++ b/svg/android-robot.svg @@ -1,19 +1 @@ - - - - - - - - - - - - - - - - - - - \ No newline at end of file + \ No newline at end of file diff --git a/svg/android.svg b/svg/android.svg index 9b1cdf1f..fd5d1f1a 100644 --- a/svg/android.svg +++ b/svg/android.svg @@ -1,17 +1 @@ - - - - - - - - - - - - - - - - - + \ No newline at end of file diff --git a/svg/ansible.svg b/svg/ansible.svg index a7b36138..02b24cc9 100644 --- a/svg/ansible.svg +++ b/svg/ansible.svg @@ -1,3 +1 @@ - - - + \ No newline at end of file diff --git a/svg/apache-druid.svg b/svg/apache-druid.svg index 2c232fd6..ae91c2a6 100644 --- a/svg/apache-druid.svg +++ b/svg/apache-druid.svg @@ -1 +1 @@ -Apache Druid icon \ No newline at end of file + \ No newline at end of file diff --git a/svg/apache.svg b/svg/apache.svg index 53eff793..d7eaabc8 100644 --- a/svg/apache.svg +++ b/svg/apache.svg @@ -1 +1 @@ - + \ No newline at end of file diff --git a/svg/apc.svg b/svg/apc.svg index d78aaf62..d49387c5 100644 --- a/svg/apc.svg +++ b/svg/apc.svg @@ -1 +1 @@ - + \ No newline at end of file diff --git a/svg/arch.svg b/svg/arch.svg index 7b953687..668a01d5 100644 --- a/svg/arch.svg +++ b/svg/arch.svg @@ -1,12 +1 @@ - - - - - - - - - - - - \ No newline at end of file + \ No newline at end of file diff --git a/svg/arduino.svg b/svg/arduino.svg index a1f726fb..2d2ee74c 100644 --- a/svg/arduino.svg +++ b/svg/arduino.svg @@ -1 +1 @@ - + \ No newline at end of file diff --git a/svg/argocd.svg b/svg/argocd.svg index f1f59f2a..c78b1b00 100644 --- a/svg/argocd.svg +++ b/svg/argocd.svg @@ -1 +1 @@ -cloudevents-icon-color \ No newline at end of file + \ No newline at end of file diff --git a/svg/asus-rog.svg b/svg/asus-rog.svg index 64507ba9..e973b4ab 100644 --- a/svg/asus-rog.svg +++ b/svg/asus-rog.svg @@ -1,2 +1 @@ - - \ No newline at end of file + \ No newline at end of file diff --git a/svg/asus-router.svg b/svg/asus-router.svg index 7679dca3..01e29a59 100644 --- a/svg/asus-router.svg +++ b/svg/asus-router.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/svg/asus.svg b/svg/asus.svg index f8734cb6..61f4f1d4 100644 --- a/svg/asus.svg +++ b/svg/asus.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/svg/at-t.svg b/svg/at-t.svg index 4ab43c62..d2143a17 100644 --- a/svg/at-t.svg +++ b/svg/at-t.svg @@ -1,11 +1 @@ - - - - - - - - - - - \ No newline at end of file + \ No newline at end of file diff --git a/svg/atlassian-bamboo.svg b/svg/atlassian-bamboo.svg index 53b8786e..e7f1ec4f 100644 --- a/svg/atlassian-bamboo.svg +++ b/svg/atlassian-bamboo.svg @@ -1 +1 @@ - + \ No newline at end of file diff --git a/svg/atlassian-jira.svg b/svg/atlassian-jira.svg index 5391ea1d..de86eba4 100644 --- a/svg/atlassian-jira.svg +++ b/svg/atlassian-jira.svg @@ -1 +1 @@ - + \ No newline at end of file diff --git a/svg/atlassian-opsgenie.svg b/svg/atlassian-opsgenie.svg index 68de642d..d3ace718 100644 --- a/svg/atlassian-opsgenie.svg +++ b/svg/atlassian-opsgenie.svg @@ -1 +1 @@ - + \ No newline at end of file diff --git a/svg/atlassian-trello.svg b/svg/atlassian-trello.svg index 72955a19..5ede47e7 100644 --- a/svg/atlassian-trello.svg +++ b/svg/atlassian-trello.svg @@ -1 +1 @@ - + \ No newline at end of file diff --git a/svg/atlassian.svg b/svg/atlassian.svg index b87a0744..7c1cc1ed 100644 --- a/svg/atlassian.svg +++ b/svg/atlassian.svg @@ -1 +1 @@ - + \ No newline at end of file diff --git a/svg/audiobookshelf.svg b/svg/audiobookshelf.svg index d3e9f105..ea872aae 100644 --- a/svg/audiobookshelf.svg +++ b/svg/audiobookshelf.svg @@ -1 +1 @@ - + \ No newline at end of file diff --git a/svg/auracast.svg b/svg/auracast.svg index 36bdd9b6..6490d88c 100644 --- a/svg/auracast.svg +++ b/svg/auracast.svg @@ -1 +1 @@ - + \ No newline at end of file diff --git a/svg/authelia.svg b/svg/authelia.svg index 944f3257..1f19ba06 100644 --- a/svg/authelia.svg +++ b/svg/authelia.svg @@ -1,71 +1 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + \ No newline at end of file diff --git a/svg/avmfritzbox.svg b/svg/avmfritzbox.svg index e47e6939..1fe72fee 100644 --- a/svg/avmfritzbox.svg +++ b/svg/avmfritzbox.svg @@ -1,320 +1 @@ - - - -]> - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + \ No newline at end of file diff --git a/svg/aws-ecs.svg b/svg/aws-ecs.svg index 136babdd..f06dc57c 100644 --- a/svg/aws-ecs.svg +++ b/svg/aws-ecs.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/svg/aws.svg b/svg/aws.svg index 80192a12..294f510f 100644 --- a/svg/aws.svg +++ b/svg/aws.svg @@ -1,38 +1 @@ - - - - - - - - - - - - + \ No newline at end of file diff --git a/svg/azuracast.svg b/svg/azuracast.svg index 277caaca..6c78296b 100644 --- a/svg/azuracast.svg +++ b/svg/azuracast.svg @@ -1,35 +1 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + \ No newline at end of file diff --git a/svg/azure-container-instances.svg b/svg/azure-container-instances.svg index 28e406dc..fcaf0923 100644 --- a/svg/azure-container-instances.svg +++ b/svg/azure-container-instances.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/svg/azure-container-service.svg b/svg/azure-container-service.svg index d4567270..3a0ab106 100644 --- a/svg/azure-container-service.svg +++ b/svg/azure-container-service.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/svg/azure-dns.svg b/svg/azure-dns.svg index 8a35556e..db69e329 100644 --- a/svg/azure-dns.svg +++ b/svg/azure-dns.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/svg/azure.svg b/svg/azure.svg index 6076d035..ead24b49 100644 --- a/svg/azure.svg +++ b/svg/azure.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/svg/backblaze.svg b/svg/backblaze.svg index 0893b8c2..9b9432df 100644 --- a/svg/backblaze.svg +++ b/svg/backblaze.svg @@ -1,5 +1 @@ - - - - - \ No newline at end of file + \ No newline at end of file diff --git a/svg/baserow.svg b/svg/baserow.svg index c35a67aa..03f7bfd3 100644 --- a/svg/baserow.svg +++ b/svg/baserow.svg @@ -1,24 +1 @@ - - - - + \ No newline at end of file diff --git a/svg/bazarr.svg b/svg/bazarr.svg index 7ce017c5..1f81fbc8 100644 --- a/svg/bazarr.svg +++ b/svg/bazarr.svg @@ -1 +1 @@ - + \ No newline at end of file diff --git a/svg/beef.svg b/svg/beef.svg index e997f9e2..a2789f0b 100644 --- a/svg/beef.svg +++ b/svg/beef.svg @@ -1 +1 @@ - + \ No newline at end of file diff --git a/svg/bing.svg b/svg/bing.svg index 12ee837b..18646c8b 100644 --- a/svg/bing.svg +++ b/svg/bing.svg @@ -1 +1 @@ -bing-logo \ No newline at end of file + \ No newline at end of file diff --git a/svg/bitcoin.svg b/svg/bitcoin.svg index 04079be3..1d01d040 100644 --- a/svg/bitcoin.svg +++ b/svg/bitcoin.svg @@ -1,7 +1 @@ - - - - - - - + \ No newline at end of file diff --git a/svg/bitwarden.svg b/svg/bitwarden.svg index 5a965084..8bae2575 100644 --- a/svg/bitwarden.svg +++ b/svg/bitwarden.svg @@ -1,7 +1 @@ - - \ No newline at end of file + \ No newline at end of file diff --git a/svg/blogger.svg b/svg/blogger.svg index c1d6b02e..8c6e64c7 100644 --- a/svg/blogger.svg +++ b/svg/blogger.svg @@ -1,7 +1 @@ - - - - - - - \ No newline at end of file + \ No newline at end of file diff --git a/svg/bluetooth.svg b/svg/bluetooth.svg index ddaa0d84..ef3aebc4 100644 --- a/svg/bluetooth.svg +++ b/svg/bluetooth.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/svg/bookstack.svg b/svg/bookstack.svg index 1026422c..1928183a 100644 --- a/svg/bookstack.svg +++ b/svg/bookstack.svg @@ -1,13 +1 @@ - - - - - - - - - - - - - \ No newline at end of file + \ No newline at end of file diff --git a/svg/borg.svg b/svg/borg.svg index a8cbb8c3..60b5e066 100644 --- a/svg/borg.svg +++ b/svg/borg.svg @@ -1,8 +1 @@ - - - - - - - - + \ No newline at end of file diff --git a/svg/borgbackup.svg b/svg/borgbackup.svg index a8cbb8c3..60b5e066 100644 --- a/svg/borgbackup.svg +++ b/svg/borgbackup.svg @@ -1,8 +1 @@ - - - - - - - - + \ No newline at end of file diff --git a/svg/brave.svg b/svg/brave.svg index b4bae1ea..542eafb0 100644 --- a/svg/brave.svg +++ b/svg/brave.svg @@ -1 +1 @@ - + \ No newline at end of file diff --git a/svg/brocade.svg b/svg/brocade.svg index 9c589707..a4a60ac7 100644 --- a/svg/brocade.svg +++ b/svg/brocade.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/svg/browserless.svg b/svg/browserless.svg index ea1156fe..a6c84e89 100644 --- a/svg/browserless.svg +++ b/svg/browserless.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/svg/c.svg b/svg/c.svg index 28c30fc2..55058b3e 100644 --- a/svg/c.svg +++ b/svg/c.svg @@ -1,82 +1 @@ - - - - - - image/svg+xml - - - - - - - - - - - - + \ No newline at end of file diff --git a/svg/cacti.svg b/svg/cacti.svg index 2e896d61..64c5ac65 100644 --- a/svg/cacti.svg +++ b/svg/cacti.svg @@ -1,278 +1 @@ - - - -image/svg+xml \ No newline at end of file + \ No newline at end of file diff --git a/svg/calibre.svg b/svg/calibre.svg index 44b06764..50a1d57c 100644 --- a/svg/calibre.svg +++ b/svg/calibre.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/svg/calibreweb.svg b/svg/calibreweb.svg index 61e6fa1e..d434ab96 100644 --- a/svg/calibreweb.svg +++ b/svg/calibreweb.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/svg/carrefour.svg b/svg/carrefour.svg index 4b527a3e..2d6666a0 100644 --- a/svg/carrefour.svg +++ b/svg/carrefour.svg @@ -1,60 +1 @@ - -image/svg+xml - \ No newline at end of file + \ No newline at end of file diff --git a/svg/castopod.svg b/svg/castopod.svg index 039deb74..b2d3a813 100644 --- a/svg/castopod.svg +++ b/svg/castopod.svg @@ -1,6 +1 @@ - - - - - - + \ No newline at end of file diff --git a/svg/cc.svg b/svg/cc.svg index 6844fd82..277952b0 100644 --- a/svg/cc.svg +++ b/svg/cc.svg @@ -1,5 +1 @@ - - \ No newline at end of file + \ No newline at end of file diff --git a/svg/centos.svg b/svg/centos.svg index 8125db85..7bae6fa2 100644 --- a/svg/centos.svg +++ b/svg/centos.svg @@ -1,24 +1 @@ - - - - - - - - - - - + \ No newline at end of file diff --git a/svg/ceph.svg b/svg/ceph.svg index 871e12b8..f71f6375 100644 --- a/svg/ceph.svg +++ b/svg/ceph.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/svg/chatgpt.svg b/svg/chatgpt.svg index aa95b6dc..cb1fe0f9 100644 --- a/svg/chatgpt.svg +++ b/svg/chatgpt.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/svg/checkmk.svg b/svg/checkmk.svg index 1b4875d8..f2e5b991 100644 --- a/svg/checkmk.svg +++ b/svg/checkmk.svg @@ -1 +1 @@ - + \ No newline at end of file diff --git a/svg/chevereto.svg b/svg/chevereto.svg index 3590e72e..8fd4e670 100644 --- a/svg/chevereto.svg +++ b/svg/chevereto.svg @@ -1,56 +1 @@ - - - - - - image/svg+xml - - - - - - - - - - - + \ No newline at end of file diff --git a/svg/chrome-canary.svg b/svg/chrome-canary.svg index f63b4718..6050f379 100644 --- a/svg/chrome-canary.svg +++ b/svg/chrome-canary.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/svg/chrome-dev.svg b/svg/chrome-dev.svg index be40965d..fa506fe8 100644 --- a/svg/chrome-dev.svg +++ b/svg/chrome-dev.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/svg/chrome-devtools.svg b/svg/chrome-devtools.svg index cae8001c..7beb3303 100644 --- a/svg/chrome-devtools.svg +++ b/svg/chrome-devtools.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/svg/chrome.svg b/svg/chrome.svg index 2b90ad3d..4b16ba2f 100644 --- a/svg/chrome.svg +++ b/svg/chrome.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/svg/chromecast.svg b/svg/chromecast.svg index a0e35b10..4fa0df13 100644 --- a/svg/chromecast.svg +++ b/svg/chromecast.svg @@ -1,18 +1 @@ - - - - ic_cast_black_24dp - Created with Sketch. - - - - - - - - - - - - - \ No newline at end of file + \ No newline at end of file diff --git a/svg/chromium.svg b/svg/chromium.svg index 13badf54..e123e6b4 100644 --- a/svg/chromium.svg +++ b/svg/chromium.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/svg/cilium.svg b/svg/cilium.svg index 982b32a4..3f021787 100644 --- a/svg/cilium.svg +++ b/svg/cilium.svg @@ -1,75 +1 @@ - - - - - - - - - - - - - - + \ No newline at end of file diff --git a/svg/cinny.svg b/svg/cinny.svg index 8701d67b..354a405a 100644 --- a/svg/cinny.svg +++ b/svg/cinny.svg @@ -1,19 +1 @@ - - - - - - - - - - - - - - \ No newline at end of file + \ No newline at end of file diff --git a/svg/cisco.svg b/svg/cisco.svg index 7fe02521..786787e3 100644 --- a/svg/cisco.svg +++ b/svg/cisco.svg @@ -1,57 +1 @@ - - - - - - - - - - - - - - - - - - + \ No newline at end of file diff --git a/svg/closed-captioning.svg b/svg/closed-captioning.svg index 6844fd82..277952b0 100644 --- a/svg/closed-captioning.svg +++ b/svg/closed-captioning.svg @@ -1,5 +1 @@ - - \ No newline at end of file + \ No newline at end of file diff --git a/svg/cloud66.svg b/svg/cloud66.svg index de4f53b8..43f1dbc0 100644 --- a/svg/cloud66.svg +++ b/svg/cloud66.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/svg/cloud9.svg b/svg/cloud9.svg index 5dcc9d39..80537d15 100644 --- a/svg/cloud9.svg +++ b/svg/cloud9.svg @@ -1,26 +1 @@ - - - - - - - - - - - - - - - image/svg+xml - - - - - - - - - - - + \ No newline at end of file diff --git a/svg/cloudbeaver.svg b/svg/cloudbeaver.svg index 7c4da18a..6799ef96 100644 --- a/svg/cloudbeaver.svg +++ b/svg/cloudbeaver.svg @@ -1 +1 @@ - + \ No newline at end of file diff --git a/svg/cloudflare-zero-trust.svg b/svg/cloudflare-zero-trust.svg index 05432564..7fcf2850 100644 --- a/svg/cloudflare-zero-trust.svg +++ b/svg/cloudflare-zero-trust.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/svg/cockpit.svg b/svg/cockpit.svg index a8515894..e48aeebd 100644 --- a/svg/cockpit.svg +++ b/svg/cockpit.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/svg/code.svg b/svg/code.svg index 0557c2cb..2dcdcfde 100644 --- a/svg/code.svg +++ b/svg/code.svg @@ -1,41 +1 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + \ No newline at end of file diff --git a/svg/codeberg.svg b/svg/codeberg.svg index a6574b0f..0d0062e9 100644 --- a/svg/codeberg.svg +++ b/svg/codeberg.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/svg/coder.svg b/svg/coder.svg index ea98a8ec..783110a2 100644 --- a/svg/coder.svg +++ b/svg/coder.svg @@ -1,15 +1 @@ - - - - - - - - - - - - - - - + \ No newline at end of file diff --git a/svg/codestats.svg b/svg/codestats.svg index b2b1aa9b..9e6a881d 100644 --- a/svg/codestats.svg +++ b/svg/codestats.svg @@ -1,31 +1 @@ - - - - - - - + \ No newline at end of file diff --git a/svg/codex.svg b/svg/codex.svg index c8562e4e..804704ed 100644 --- a/svg/codex.svg +++ b/svg/codex.svg @@ -1,80 +1 @@ - - - - - - - - - - - - - - - - - - - - - - + \ No newline at end of file diff --git a/svg/commafeed.svg b/svg/commafeed.svg index f1d758e1..e8d3a11b 100644 --- a/svg/commafeed.svg +++ b/svg/commafeed.svg @@ -1,20 +1 @@ - - - - - - - - - - - - - - - - - - - - \ No newline at end of file + \ No newline at end of file diff --git a/svg/concourse.svg b/svg/concourse.svg index f472acdb..58f4b153 100644 --- a/svg/concourse.svg +++ b/svg/concourse.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/svg/contabo.svg b/svg/contabo.svg index eb3396b2..601270a5 100644 --- a/svg/contabo.svg +++ b/svg/contabo.svg @@ -1,16 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/svg/coredns.svg b/svg/coredns.svg index ddd2fe22..0caa10ca 100644 --- a/svg/coredns.svg +++ b/svg/coredns.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/svg/coreos.svg b/svg/coreos.svg index 92cad63b..5195d800 100644 --- a/svg/coreos.svg +++ b/svg/coreos.svg @@ -1,12 +1 @@ - - - - - - - - - - - - \ No newline at end of file + \ No newline at end of file diff --git a/svg/costco.svg b/svg/costco.svg index 2af4dcef..72830018 100644 --- a/svg/costco.svg +++ b/svg/costco.svg @@ -1,14 +1 @@ - - - - - - - - - - - - - - + \ No newline at end of file diff --git a/svg/cozy.svg b/svg/cozy.svg index 599d8875..dd0e339c 100644 --- a/svg/cozy.svg +++ b/svg/cozy.svg @@ -1,5 +1 @@ - - - - - + \ No newline at end of file diff --git a/svg/cpanel.svg b/svg/cpanel.svg index e7b2b689..5c7e9f8d 100644 --- a/svg/cpanel.svg +++ b/svg/cpanel.svg @@ -1 +1 @@ -hero-cpanel \ No newline at end of file + \ No newline at end of file diff --git a/svg/cpp.svg b/svg/cpp.svg index 5e117077..983fd69f 100644 --- a/svg/cpp.svg +++ b/svg/cpp.svg @@ -1,25 +1 @@ - - - - - - - - - - - - - - - - - + \ No newline at end of file diff --git a/svg/crowdsec.svg b/svg/crowdsec.svg index 83629c46..bf0871bf 100644 --- a/svg/crowdsec.svg +++ b/svg/crowdsec.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/svg/cryptomator.svg b/svg/cryptomator.svg index 53e7c879..035010d8 100644 --- a/svg/cryptomator.svg +++ b/svg/cryptomator.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/svg/cryptpad.svg b/svg/cryptpad.svg index 1944b914..7c29d36a 100644 --- a/svg/cryptpad.svg +++ b/svg/cryptpad.svg @@ -1,22 +1 @@ - - - - - - - - - - - - - - - - - - - - - - + \ No newline at end of file diff --git a/svg/csharp.svg b/svg/csharp.svg index c023aa9b..fa67939a 100644 --- a/svg/csharp.svg +++ b/svg/csharp.svg @@ -1,10 +1 @@ - - - - - - - - - - \ No newline at end of file + \ No newline at end of file diff --git a/svg/css.svg b/svg/css.svg index a23ac04e..1aa0be8d 100644 --- a/svg/css.svg +++ b/svg/css.svg @@ -1,101 +1 @@ - - - - - - - - - - image/svg+xml - - - - - - - - - - - - - - - - - - - + \ No newline at end of file diff --git a/svg/cups.svg b/svg/cups.svg index 5983f4a1..6e1eb0ca 100644 --- a/svg/cups.svg +++ b/svg/cups.svg @@ -1,8 +1 @@ - - - - - - - - + \ No newline at end of file diff --git a/svg/cura.svg b/svg/cura.svg index b8b7ecfd..0cdaec4b 100644 --- a/svg/cura.svg +++ b/svg/cura.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/svg/cyberchef.svg b/svg/cyberchef.svg index 9ec0f951..1284871f 100644 --- a/svg/cyberchef.svg +++ b/svg/cyberchef.svg @@ -1,146 +1 @@ - - - - - - - - - - - - - - - - - - image/svg+xml - - - - - - - - - - - - - - - - - - + \ No newline at end of file diff --git a/svg/d-link.svg b/svg/d-link.svg index ce26ee09..4c99dcdf 100644 --- a/svg/d-link.svg +++ b/svg/d-link.svg @@ -1,42 +1 @@ - - - - - - - - - - - - - - - - + \ No newline at end of file diff --git a/svg/dart.svg b/svg/dart.svg index d84eb59a..52b3e187 100644 --- a/svg/dart.svg +++ b/svg/dart.svg @@ -1 +1 @@ -dart-programming-language \ No newline at end of file + \ No newline at end of file diff --git a/svg/datadog.svg b/svg/datadog.svg index 266d2fab..7745f7c2 100644 --- a/svg/datadog.svg +++ b/svg/datadog.svg @@ -1,33 +1 @@ - - - - - - - - + \ No newline at end of file diff --git a/svg/dc-os.svg b/svg/dc-os.svg index e5256517..76b7847a 100644 --- a/svg/dc-os.svg +++ b/svg/dc-os.svg @@ -1 +1 @@ - + \ No newline at end of file diff --git a/svg/ddns-updater.svg b/svg/ddns-updater.svg index d87aaa5c..1c3d2c8e 100644 --- a/svg/ddns-updater.svg +++ b/svg/ddns-updater.svg @@ -1 +1 @@ -ddnsgopher \ No newline at end of file + \ No newline at end of file diff --git a/svg/debian.svg b/svg/debian.svg index 685f6323..522f2e65 100644 --- a/svg/debian.svg +++ b/svg/debian.svg @@ -1,9 +1 @@ - - - - - - - - - \ No newline at end of file + \ No newline at end of file diff --git a/svg/dell.svg b/svg/dell.svg index 0641635a..40ce32cd 100644 --- a/svg/dell.svg +++ b/svg/dell.svg @@ -1,47 +1 @@ - - - - - - - image/svg+xml - - - - - - - - - - - - - - + \ No newline at end of file diff --git a/svg/deluge.svg b/svg/deluge.svg index 69e59776..ef65a6fe 100644 --- a/svg/deluge.svg +++ b/svg/deluge.svg @@ -1,402 +1 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - image/svg+xml - - Internet Category - - - Jakub Steiner - - - - - Tuomas Kuosmanen - - - - http://jimmac.musichall.cz - - - internet - tools - applications - category - - - - - - - - - - - - - - - - - - - - - - - - + \ No newline at end of file diff --git a/svg/deno.svg b/svg/deno.svg index 3e275853..bb876238 100644 --- a/svg/deno.svg +++ b/svg/deno.svg @@ -1,92 +1 @@ - - - - -Created by potrace 1.15, written by Peter Selinger 2001-2017 - - - - - - - + \ No newline at end of file diff --git a/svg/diagrams-net.svg b/svg/diagrams-net.svg index e30a4f68..73f8bef7 100644 --- a/svg/diagrams-net.svg +++ b/svg/diagrams-net.svg @@ -1,17 +1 @@ - - - - - - - - - - - - \ No newline at end of file + \ No newline at end of file diff --git a/svg/digital-ocean.svg b/svg/digital-ocean.svg index 7ee2ff9c..3f0d979d 100644 --- a/svg/digital-ocean.svg +++ b/svg/digital-ocean.svg @@ -1,72 +1 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + \ No newline at end of file diff --git a/svg/directus.svg b/svg/directus.svg index 2fab9f06..ac9c5238 100644 --- a/svg/directus.svg +++ b/svg/directus.svg @@ -1 +1 @@ -rabbit \ No newline at end of file + \ No newline at end of file diff --git a/svg/discord.svg b/svg/discord.svg index ca654007..a8e26223 100644 --- a/svg/discord.svg +++ b/svg/discord.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/svg/discourse.svg b/svg/discourse.svg index 4cbb8c87..fdeca64e 100644 --- a/svg/discourse.svg +++ b/svg/discourse.svg @@ -1,8 +1 @@ - - - - - - - - \ No newline at end of file + \ No newline at end of file diff --git a/svg/dlna.svg b/svg/dlna.svg index 34bdbf20..946f6add 100644 --- a/svg/dlna.svg +++ b/svg/dlna.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/svg/docker-mailserver.svg b/svg/docker-mailserver.svg index 9d95ec14..262b9b82 100644 --- a/svg/docker-mailserver.svg +++ b/svg/docker-mailserver.svg @@ -1,55 +1 @@ - - + \ No newline at end of file diff --git a/svg/docker.svg b/svg/docker.svg index 8529e9d8..6c8a79ac 100644 --- a/svg/docker.svg +++ b/svg/docker.svg @@ -1,7 +1 @@ - - \ No newline at end of file + \ No newline at end of file diff --git a/svg/docspell.svg b/svg/docspell.svg index 3a577dc6..6b2decdc 100644 --- a/svg/docspell.svg +++ b/svg/docspell.svg @@ -1,129 +1 @@ - - - - - - - - - - - - image/svg+xml - - - - - - - - - - - - - - + \ No newline at end of file diff --git a/svg/dokuwiki.svg b/svg/dokuwiki.svg index cbee241e..1ccea6ce 100644 --- a/svg/dokuwiki.svg +++ b/svg/dokuwiki.svg @@ -1,553 +1 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - image/svg+xml - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + \ No newline at end of file diff --git a/svg/dovecot.svg b/svg/dovecot.svg index 637638a0..7b87fcc8 100644 --- a/svg/dovecot.svg +++ b/svg/dovecot.svg @@ -1,22 +1 @@ - - - - - - - - - + \ No newline at end of file diff --git a/svg/dozzle.svg b/svg/dozzle.svg index 07cc8884..42f16c95 100644 --- a/svg/dozzle.svg +++ b/svg/dozzle.svg @@ -1,5 +1 @@ - - - - - + \ No newline at end of file diff --git a/svg/draytek.svg b/svg/draytek.svg index a844a713..2dbd702c 100644 --- a/svg/draytek.svg +++ b/svg/draytek.svg @@ -1,93 +1 @@ - - -image/svg+xml \ No newline at end of file + \ No newline at end of file diff --git a/svg/droppy.svg b/svg/droppy.svg index ec92f76d..9b0ece51 100644 --- a/svg/droppy.svg +++ b/svg/droppy.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/svg/duckduckgo.svg b/svg/duckduckgo.svg index fc455f41..0eaa56be 100644 --- a/svg/duckduckgo.svg +++ b/svg/duckduckgo.svg @@ -1,14 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/svg/duo.svg b/svg/duo.svg index c9572b48..353ec5d1 100644 --- a/svg/duo.svg +++ b/svg/duo.svg @@ -1,72 +1 @@ - - - -image/svg+xml \ No newline at end of file + \ No newline at end of file diff --git a/svg/ebay.svg b/svg/ebay.svg index c484c1f8..889a7b94 100644 --- a/svg/ebay.svg +++ b/svg/ebay.svg @@ -1,27 +1 @@ - - - - - - - - - - - - - + \ No newline at end of file diff --git a/svg/edge-dev.svg b/svg/edge-dev.svg index 0a6edfbd..1da4bc5a 100644 --- a/svg/edge-dev.svg +++ b/svg/edge-dev.svg @@ -1,230 +1 @@ - -image/svg+xml - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + \ No newline at end of file diff --git a/svg/edge.svg b/svg/edge.svg index f986f089..484ffe51 100644 --- a/svg/edge.svg +++ b/svg/edge.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/svg/elastic-beats.svg b/svg/elastic-beats.svg index 6ff823d8..ece77f3e 100644 --- a/svg/elastic-beats.svg +++ b/svg/elastic-beats.svg @@ -1 +1 @@ - + \ No newline at end of file diff --git a/svg/elastic-kibana.svg b/svg/elastic-kibana.svg index 39890168..4663dc88 100644 --- a/svg/elastic-kibana.svg +++ b/svg/elastic-kibana.svg @@ -1,14 +1 @@ - - - - - - - - - - - - - - \ No newline at end of file + \ No newline at end of file diff --git a/svg/elastic-logstash.svg b/svg/elastic-logstash.svg index cf718cd0..ca486ee7 100644 --- a/svg/elastic-logstash.svg +++ b/svg/elastic-logstash.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/svg/elastic.svg b/svg/elastic.svg index b95507cd..53c42e3e 100644 --- a/svg/elastic.svg +++ b/svg/elastic.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/svg/elasticsearch.svg b/svg/elasticsearch.svg index b95507cd..53c42e3e 100644 --- a/svg/elasticsearch.svg +++ b/svg/elasticsearch.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/svg/electron.svg b/svg/electron.svg index dc81c99d..58cf8747 100644 --- a/svg/electron.svg +++ b/svg/electron.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/svg/element.svg b/svg/element.svg index d29423e1..ef23faad 100644 --- a/svg/element.svg +++ b/svg/element.svg @@ -1,6 +1 @@ - - - - - - \ No newline at end of file + \ No newline at end of file diff --git a/svg/emacs.svg b/svg/emacs.svg index e3c16453..1abbe3fb 100644 --- a/svg/emacs.svg +++ b/svg/emacs.svg @@ -1 +1 @@ - + \ No newline at end of file diff --git a/svg/emby.svg b/svg/emby.svg index 64593281..b99157a1 100644 --- a/svg/emby.svg +++ b/svg/emby.svg @@ -1,7 +1 @@ - - - - - - - + \ No newline at end of file diff --git a/svg/emqx.svg b/svg/emqx.svg index 60f452a8..45f58bcd 100644 --- a/svg/emqx.svg +++ b/svg/emqx.svg @@ -1,14 +1 @@ - - - 320备份 - - - - - - - - - - - \ No newline at end of file + \ No newline at end of file diff --git a/svg/erste-george.svg b/svg/erste-george.svg index 4ac138d9..288c4776 100644 --- a/svg/erste-george.svg +++ b/svg/erste-george.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/svg/erste.svg b/svg/erste.svg index 31270a84..41b81292 100644 --- a/svg/erste.svg +++ b/svg/erste.svg @@ -1,33 +1 @@ - - - - - - - - - - - - - - - + \ No newline at end of file diff --git a/svg/esphome.svg b/svg/esphome.svg index 70b0faec..4f5321c7 100644 --- a/svg/esphome.svg +++ b/svg/esphome.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/svg/espressif.svg b/svg/espressif.svg index 42427dbc..14d3c219 100644 --- a/svg/espressif.svg +++ b/svg/espressif.svg @@ -1 +1 @@ - + \ No newline at end of file diff --git a/svg/etesync.svg b/svg/etesync.svg index 4827d1d3..ed955945 100644 --- a/svg/etesync.svg +++ b/svg/etesync.svg @@ -1,241 +1 @@ - - - - - - image/svg+xml - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + \ No newline at end of file diff --git a/svg/ethereum.svg b/svg/ethereum.svg index 14407cfc..54d02980 100644 --- a/svg/ethereum.svg +++ b/svg/ethereum.svg @@ -1,11 +1 @@ - - - - - - - - - - - \ No newline at end of file + \ No newline at end of file diff --git a/svg/facebook-messenger.svg b/svg/facebook-messenger.svg index bd980c3a..01433b43 100644 --- a/svg/facebook-messenger.svg +++ b/svg/facebook-messenger.svg @@ -1,2 +1 @@ - - + \ No newline at end of file diff --git a/svg/facebook.svg b/svg/facebook.svg index cd21f113..49640e80 100644 --- a/svg/facebook.svg +++ b/svg/facebook.svg @@ -1,17 +1 @@ - - - - - - - - - - - + \ No newline at end of file diff --git a/svg/fedora-alt.svg b/svg/fedora-alt.svg index e2273117..ffda8333 100644 --- a/svg/fedora-alt.svg +++ b/svg/fedora-alt.svg @@ -1,16 +1 @@ - - - - - - - + \ No newline at end of file diff --git a/svg/fedora.svg b/svg/fedora.svg index 40668e21..8e1ca669 100644 --- a/svg/fedora.svg +++ b/svg/fedora.svg @@ -1,36 +1 @@ - - - - - - - - - - \ No newline at end of file + \ No newline at end of file diff --git a/svg/feedly.svg b/svg/feedly.svg index 7730e24d..e5e3b8e5 100644 --- a/svg/feedly.svg +++ b/svg/feedly.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/svg/ferdium.svg b/svg/ferdium.svg index f49c3b52..bc7fb132 100644 --- a/svg/ferdium.svg +++ b/svg/ferdium.svg @@ -1,4 +1 @@ - - - - + \ No newline at end of file diff --git a/svg/filebot.svg b/svg/filebot.svg index c501c7e7..661145ff 100644 --- a/svg/filebot.svg +++ b/svg/filebot.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/svg/filebrowser.svg b/svg/filebrowser.svg index 5e78eccf..5918a067 100644 --- a/svg/filebrowser.svg +++ b/svg/filebrowser.svg @@ -1,147 +1 @@ - -image/svg+xml - - - - - \ No newline at end of file + \ No newline at end of file diff --git a/svg/fileflows.svg b/svg/fileflows.svg index fb312e62..25d46671 100644 --- a/svg/fileflows.svg +++ b/svg/fileflows.svg @@ -1,3 +1 @@ - - - \ No newline at end of file + \ No newline at end of file diff --git a/svg/filerun.svg b/svg/filerun.svg index 445568d9..3fc08dfb 100644 --- a/svg/filerun.svg +++ b/svg/filerun.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/svg/files.svg b/svg/files.svg index 19eda0f8..543d4fea 100644 --- a/svg/files.svg +++ b/svg/files.svg @@ -1,11 +1 @@ - - - - - - - - - - + \ No newline at end of file diff --git a/svg/filezilla.svg b/svg/filezilla.svg index 68c65e9b..9e6b8a64 100644 --- a/svg/filezilla.svg +++ b/svg/filezilla.svg @@ -1,47 +1 @@ - - - - - - - - - - - - - + \ No newline at end of file diff --git a/svg/fios.svg b/svg/fios.svg index c2bc459e..70ae4d63 100644 --- a/svg/fios.svg +++ b/svg/fios.svg @@ -1,130 +1 @@ - - - - - - - - - - - - - - image/svg+xml - - - - - - - - - - - - - - - - - - - - - + \ No newline at end of file diff --git a/svg/firefly.svg b/svg/firefly.svg index a74693de..97eb49af 100644 --- a/svg/firefly.svg +++ b/svg/firefly.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/svg/firefox-beta.svg b/svg/firefox-beta.svg index efcb9d2e..51f3636c 100644 --- a/svg/firefox-beta.svg +++ b/svg/firefox-beta.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/svg/firefox-developer-edition.svg b/svg/firefox-developer-edition.svg index 742eb5d3..2b8812f4 100644 --- a/svg/firefox-developer-edition.svg +++ b/svg/firefox-developer-edition.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/svg/firefox-lite.svg b/svg/firefox-lite.svg index cfcad6db..0c29d1c6 100644 --- a/svg/firefox-lite.svg +++ b/svg/firefox-lite.svg @@ -1 +1 @@ -q \ No newline at end of file +q \ No newline at end of file diff --git a/svg/firefox-nightly.svg b/svg/firefox-nightly.svg index 853400ea..e88d8c25 100644 --- a/svg/firefox-nightly.svg +++ b/svg/firefox-nightly.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/svg/firefox-reality.svg b/svg/firefox-reality.svg index e22a1ce7..68ae8357 100644 --- a/svg/firefox-reality.svg +++ b/svg/firefox-reality.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/svg/firefox-send.svg b/svg/firefox-send.svg index 26d529d2..35ace7f9 100644 --- a/svg/firefox-send.svg +++ b/svg/firefox-send.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/svg/firefox.svg b/svg/firefox.svg index 065152ac..b5ee61ed 100644 --- a/svg/firefox.svg +++ b/svg/firefox.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/svg/firewalla.svg b/svg/firewalla.svg index aabe2851..0a63dbc7 100644 --- a/svg/firewalla.svg +++ b/svg/firewalla.svg @@ -1 +1 @@ -Logo_Refine \ No newline at end of file + \ No newline at end of file diff --git a/svg/flatpak.svg b/svg/flatpak.svg index 62b6719d..7e7efe48 100644 --- a/svg/flatpak.svg +++ b/svg/flatpak.svg @@ -1,130 +1 @@ - - - - - - - - image/svg+xml - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + \ No newline at end of file diff --git a/svg/flood.svg b/svg/flood.svg index 626b30da..f264a162 100644 --- a/svg/flood.svg +++ b/svg/flood.svg @@ -1,7 +1 @@ - - - - - - + \ No newline at end of file diff --git a/svg/fluffychat.svg b/svg/fluffychat.svg index 9e0bd186..d70d4e43 100644 --- a/svg/fluffychat.svg +++ b/svg/fluffychat.svg @@ -1 +1 @@ -fluffychat \ No newline at end of file + \ No newline at end of file diff --git a/svg/fluidd.svg b/svg/fluidd.svg index 6002601f..b4717f7e 100644 --- a/svg/fluidd.svg +++ b/svg/fluidd.svg @@ -1,10 +1 @@ - - - - - - - - - - + \ No newline at end of file diff --git a/svg/focalboard.svg b/svg/focalboard.svg index 0f624ce4..08e61d94 100644 --- a/svg/focalboard.svg +++ b/svg/focalboard.svg @@ -1,29 +1 @@ - - - - - - - - - - - - - - + \ No newline at end of file diff --git a/svg/foldingathome.svg b/svg/foldingathome.svg index 0dc7f2d5..2239fce4 100644 --- a/svg/foldingathome.svg +++ b/svg/foldingathome.svg @@ -1,57 +1 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - \ No newline at end of file + \ No newline at end of file diff --git a/svg/fontawesome.svg b/svg/fontawesome.svg index 9256b079..9e5d41bb 100644 --- a/svg/fontawesome.svg +++ b/svg/fontawesome.svg @@ -1,9 +1 @@ - - - - - - - - - \ No newline at end of file + \ No newline at end of file diff --git a/svg/forgejo.svg b/svg/forgejo.svg index bcacdc02..b8563432 100644 --- a/svg/forgejo.svg +++ b/svg/forgejo.svg @@ -1,27 +1 @@ - - - - - - - - - - + \ No newline at end of file diff --git a/svg/fossil.svg b/svg/fossil.svg index 45557470..b360d88a 100644 --- a/svg/fossil.svg +++ b/svg/fossil.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/svg/franz.svg b/svg/franz.svg index 87188f4a..00ed59e3 100644 --- a/svg/franz.svg +++ b/svg/franz.svg @@ -1,35 +1 @@ - - - - franz - Created with Sketch. - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - \ No newline at end of file + \ No newline at end of file diff --git a/svg/freedombox.svg b/svg/freedombox.svg index 829924d5..7ecf1c45 100644 --- a/svg/freedombox.svg +++ b/svg/freedombox.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/svg/freeipa.svg b/svg/freeipa.svg index b678a19b..f7faafa6 100644 --- a/svg/freeipa.svg +++ b/svg/freeipa.svg @@ -1,87 +1 @@ - - - - - - - - - - image/svg+xml - - - - - - - - - - - - - - + \ No newline at end of file diff --git a/svg/freenas.svg b/svg/freenas.svg index 9aacb3b6..63ff3936 100644 --- a/svg/freenas.svg +++ b/svg/freenas.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/svg/freenom.svg b/svg/freenom.svg index 9d759637..5611fa4f 100644 --- a/svg/freenom.svg +++ b/svg/freenom.svg @@ -1,25 +1 @@ - - - - - - - - - - + \ No newline at end of file diff --git a/svg/freepbx.svg b/svg/freepbx.svg index 500f35cc..2ef2a0ac 100644 --- a/svg/freepbx.svg +++ b/svg/freepbx.svg @@ -1,39 +1 @@ - - - - - - - - - - - - - - - - - - - - + \ No newline at end of file diff --git a/svg/freshping.svg b/svg/freshping.svg index 971c727a..e40d0e90 100644 --- a/svg/freshping.svg +++ b/svg/freshping.svg @@ -1,5 +1 @@ - - - - - + \ No newline at end of file diff --git a/svg/freshrss.svg b/svg/freshrss.svg index caa987da..666ff267 100644 --- a/svg/freshrss.svg +++ b/svg/freshrss.svg @@ -1,12 +1 @@ - - Logo FreshRSS - - - - - - - - - - + \ No newline at end of file diff --git a/svg/frigate.svg b/svg/frigate.svg index 149613c4..f363397f 100644 --- a/svg/frigate.svg +++ b/svg/frigate.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/svg/fronius.svg b/svg/fronius.svg index 5f1d197b..725cfcd6 100644 --- a/svg/fronius.svg +++ b/svg/fronius.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/svg/funkwhale.svg b/svg/funkwhale.svg index 1487fcf7..ea23217d 100644 --- a/svg/funkwhale.svg +++ b/svg/funkwhale.svg @@ -1,30 +1 @@ - - - - - - - - - - - - - - - - + \ No newline at end of file diff --git a/svg/gatus.svg b/svg/gatus.svg index 52cc2b84..e8743aa6 100644 --- a/svg/gatus.svg +++ b/svg/gatus.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/svg/gboard.svg b/svg/gboard.svg index 8bd825a1..a331c0fa 100644 --- a/svg/gboard.svg +++ b/svg/gboard.svg @@ -1,24 +1 @@ - - - - - - - - - - - - - - - - - - - - - - \ No newline at end of file + \ No newline at end of file diff --git a/svg/gebera.svg b/svg/gebera.svg index e60c3bf1..24409176 100644 --- a/svg/gebera.svg +++ b/svg/gebera.svg @@ -1,582 +1 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - image/svg+xml - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - Gerbera - + \ No newline at end of file diff --git a/svg/geckoview.svg b/svg/geckoview.svg index 42eb8726..68616000 100644 --- a/svg/geckoview.svg +++ b/svg/geckoview.svg @@ -1,2 +1 @@ - - \ No newline at end of file + \ No newline at end of file diff --git a/svg/gentoo.svg b/svg/gentoo.svg index 31953c0f..2336b192 100644 --- a/svg/gentoo.svg +++ b/svg/gentoo.svg @@ -1,24 +1 @@ - - -Gentoo Linux logo (matte) - - - - - - - - - - - - - - - - - - - - - + \ No newline at end of file diff --git a/svg/gigaset.svg b/svg/gigaset.svg index 0952fc02..55554ead 100644 --- a/svg/gigaset.svg +++ b/svg/gigaset.svg @@ -1,52 +1 @@ - - - - - - - - - - - - - - - - - + \ No newline at end of file diff --git a/svg/gitbook.svg b/svg/gitbook.svg new file mode 100644 index 00000000..ce5b32ab --- /dev/null +++ b/svg/gitbook.svg @@ -0,0 +1,22 @@ + + + + + + + + + + \ No newline at end of file diff --git a/svg/gitea.svg b/svg/gitea.svg index 797d894b..4848373a 100644 --- a/svg/gitea.svg +++ b/svg/gitea.svg @@ -1,12 +1 @@ - - - - - - - - - - - - \ No newline at end of file + \ No newline at end of file diff --git a/svg/github.svg b/svg/github.svg index a8d11740..c3fcd1b6 100644 --- a/svg/github.svg +++ b/svg/github.svg @@ -1,3 +1 @@ - - - + \ No newline at end of file diff --git a/svg/gitlab.svg b/svg/gitlab.svg index 95a22f10..96d50782 100644 --- a/svg/gitlab.svg +++ b/svg/gitlab.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/svg/gladys-assistant.svg b/svg/gladys-assistant.svg index 46eb2504..b848a6e8 100644 --- a/svg/gladys-assistant.svg +++ b/svg/gladys-assistant.svg @@ -1 +1 @@ -Artboard 1 \ No newline at end of file + \ No newline at end of file diff --git a/svg/gluetun.svg b/svg/gluetun.svg index 5a735677..138f8b07 100644 --- a/svg/gluetun.svg +++ b/svg/gluetun.svg @@ -1,1720 +1 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - image/svg+xml - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - Gluetun - - +Gluetun \ No newline at end of file diff --git a/svg/gmail.svg b/svg/gmail.svg index 40b7175c..0b3ccdb2 100644 --- a/svg/gmail.svg +++ b/svg/gmail.svg @@ -1,7 +1 @@ - - - - - - - \ No newline at end of file + \ No newline at end of file diff --git a/svg/go.svg b/svg/go.svg index 8164d558..6a368557 100644 --- a/svg/go.svg +++ b/svg/go.svg @@ -1,55 +1 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + \ No newline at end of file diff --git a/svg/google-admin.svg b/svg/google-admin.svg index 3c33cd30..e558f032 100644 --- a/svg/google-admin.svg +++ b/svg/google-admin.svg @@ -1,11 +1 @@ - - - - - - - - - - - + \ No newline at end of file diff --git a/svg/google-alerts.svg b/svg/google-alerts.svg index 2d3aec7b..9a4da1b1 100644 --- a/svg/google-alerts.svg +++ b/svg/google-alerts.svg @@ -1,18 +1 @@ - - - - - - - - - - - + \ No newline at end of file diff --git a/svg/google-analytics.svg b/svg/google-analytics.svg index 38ad1091..4d7df3c0 100644 --- a/svg/google-analytics.svg +++ b/svg/google-analytics.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/svg/google-assistant.svg b/svg/google-assistant.svg index adcc7e7f..f6a49362 100644 --- a/svg/google-assistant.svg +++ b/svg/google-assistant.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/svg/google-calendar.svg b/svg/google-calendar.svg index c32c0c77..c2edb1d8 100644 --- a/svg/google-calendar.svg +++ b/svg/google-calendar.svg @@ -1,28 +1 @@ - - - - - - - - - - - - - - - - - + \ No newline at end of file diff --git a/svg/google-chat.svg b/svg/google-chat.svg index 8b6f0f64..034dfba9 100644 --- a/svg/google-chat.svg +++ b/svg/google-chat.svg @@ -1,5 +1 @@ - - - - - + \ No newline at end of file diff --git a/svg/google-classroom.svg b/svg/google-classroom.svg index 0072b0f1..668ad952 100644 --- a/svg/google-classroom.svg +++ b/svg/google-classroom.svg @@ -1,38 +1 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - + \ No newline at end of file diff --git a/svg/google-cloud-platform.svg b/svg/google-cloud-platform.svg index 22b5c017..03d1ff4e 100644 --- a/svg/google-cloud-platform.svg +++ b/svg/google-cloud-platform.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/svg/google-cloud-print.svg b/svg/google-cloud-print.svg index dbb0703d..6f7b9805 100644 --- a/svg/google-cloud-print.svg +++ b/svg/google-cloud-print.svg @@ -1,62 +1 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - \ No newline at end of file + \ No newline at end of file diff --git a/svg/google-compute-engine.svg b/svg/google-compute-engine.svg index 04d1d4eb..ac82d2f7 100644 --- a/svg/google-compute-engine.svg +++ b/svg/google-compute-engine.svg @@ -1,2 +1 @@ - - \ No newline at end of file + \ No newline at end of file diff --git a/svg/google-contacts.svg b/svg/google-contacts.svg index b9e54ed9..c584559a 100644 --- a/svg/google-contacts.svg +++ b/svg/google-contacts.svg @@ -1,18 +1 @@ - - - - - - - - - - - - - + \ No newline at end of file diff --git a/svg/google-docs.svg b/svg/google-docs.svg index 180ef36e..2369dbbf 100644 --- a/svg/google-docs.svg +++ b/svg/google-docs.svg @@ -1,89 +1 @@ - - - - Docs-icon - Created with Sketch. - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - \ No newline at end of file + \ No newline at end of file diff --git a/svg/google-domains.svg b/svg/google-domains.svg index 5cef5c97..ecfdbbb0 100644 --- a/svg/google-domains.svg +++ b/svg/google-domains.svg @@ -1 +1 @@ -google-domain \ No newline at end of file + \ No newline at end of file diff --git a/svg/google-drive.svg b/svg/google-drive.svg index a8cefd5b..af852221 100644 --- a/svg/google-drive.svg +++ b/svg/google-drive.svg @@ -1,8 +1 @@ - - - - - - - - \ No newline at end of file + \ No newline at end of file diff --git a/svg/google-earth.svg b/svg/google-earth.svg index 8e76bbc1..a10a2047 100644 --- a/svg/google-earth.svg +++ b/svg/google-earth.svg @@ -1,64 +1 @@ - - - - - - - - + \ No newline at end of file diff --git a/svg/google-fi.svg b/svg/google-fi.svg index b34e0c21..2bdd0411 100644 --- a/svg/google-fi.svg +++ b/svg/google-fi.svg @@ -1,44 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/svg/google-fit.svg b/svg/google-fit.svg index 0f2671ed..f21fe3d7 100644 --- a/svg/google-fit.svg +++ b/svg/google-fit.svg @@ -1,6 +1 @@ - - - - - - + \ No newline at end of file diff --git a/svg/google-fonts.svg b/svg/google-fonts.svg index d03d0ec5..e6b9b110 100644 --- a/svg/google-fonts.svg +++ b/svg/google-fonts.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/svg/google-forms.svg b/svg/google-forms.svg index acbadbdc..7a0fb2d3 100644 --- a/svg/google-forms.svg +++ b/svg/google-forms.svg @@ -1,89 +1 @@ - - - - Forms-icon - Created with Sketch. - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - \ No newline at end of file + \ No newline at end of file diff --git a/svg/google-home.svg b/svg/google-home.svg index b8f8ca6c..88c04d08 100644 --- a/svg/google-home.svg +++ b/svg/google-home.svg @@ -1,44 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/svg/google-keep.svg b/svg/google-keep.svg index b82ce922..efc66d85 100644 --- a/svg/google-keep.svg +++ b/svg/google-keep.svg @@ -1,13 +1 @@ - - - - - + \ No newline at end of file diff --git a/svg/google-lens.svg b/svg/google-lens.svg index 4f6527d1..93be3ddb 100644 --- a/svg/google-lens.svg +++ b/svg/google-lens.svg @@ -1,36 +1 @@ - - - - - - - - - + \ No newline at end of file diff --git a/svg/google-meet.svg b/svg/google-meet.svg index e42c2b31..c1b97f83 100644 --- a/svg/google-meet.svg +++ b/svg/google-meet.svg @@ -1,8 +1 @@ - - - - - - - - \ No newline at end of file + \ No newline at end of file diff --git a/svg/google-messages.svg b/svg/google-messages.svg index c008b46f..43b06155 100644 --- a/svg/google-messages.svg +++ b/svg/google-messages.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/svg/google-news.svg b/svg/google-news.svg index 73292c9f..32f488de 100644 --- a/svg/google-news.svg +++ b/svg/google-news.svg @@ -1,27 +1 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - + \ No newline at end of file diff --git a/svg/google-one.svg b/svg/google-one.svg index 1a710766..c1aa1f60 100644 --- a/svg/google-one.svg +++ b/svg/google-one.svg @@ -1 +1 @@ - + \ No newline at end of file diff --git a/svg/google-pay.svg b/svg/google-pay.svg index ac621e4f..f247dd9a 100644 --- a/svg/google-pay.svg +++ b/svg/google-pay.svg @@ -1,8 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/svg/google-photos.svg b/svg/google-photos.svg index e5a32840..06915749 100644 --- a/svg/google-photos.svg +++ b/svg/google-photos.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/svg/google-play-books.svg b/svg/google-play-books.svg index d443f0ec..2bbb25f4 100644 --- a/svg/google-play-books.svg +++ b/svg/google-play-books.svg @@ -1,29 +1 @@ - - - - - - - - - - - - - - - - - - - - - - + \ No newline at end of file diff --git a/svg/google-play-games.svg b/svg/google-play-games.svg index f1db16c8..50c4c0c3 100644 --- a/svg/google-play-games.svg +++ b/svg/google-play-games.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/svg/google-play.svg b/svg/google-play.svg index 8e3e5a1b..9defd8bd 100644 --- a/svg/google-play.svg +++ b/svg/google-play.svg @@ -1,21 +1 @@ - - - - - - - - - + \ No newline at end of file diff --git a/svg/google-podcasts.svg b/svg/google-podcasts.svg index 079d16d9..1b7edfda 100644 --- a/svg/google-podcasts.svg +++ b/svg/google-podcasts.svg @@ -1,10 +1 @@ - - - - - - - - - - \ No newline at end of file + \ No newline at end of file diff --git a/svg/google-scholar.svg b/svg/google-scholar.svg index 77538309..db5ed9b9 100644 --- a/svg/google-scholar.svg +++ b/svg/google-scholar.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/svg/google-search-console.svg b/svg/google-search-console.svg index a5a2d098..661e9da9 100644 --- a/svg/google-search-console.svg +++ b/svg/google-search-console.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/svg/google-sheets.svg b/svg/google-sheets.svg index bd5d938c..9fdb2d49 100644 --- a/svg/google-sheets.svg +++ b/svg/google-sheets.svg @@ -1,89 +1 @@ - - - - Sheets-icon - Created with Sketch. - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - \ No newline at end of file + \ No newline at end of file diff --git a/svg/google-shopping.svg b/svg/google-shopping.svg index 05b22d07..df167ca9 100644 --- a/svg/google-shopping.svg +++ b/svg/google-shopping.svg @@ -1,24 +1 @@ - - - - - - - - - - - + \ No newline at end of file diff --git a/svg/google-sites.svg b/svg/google-sites.svg index 0228deeb..cbe64d3a 100644 --- a/svg/google-sites.svg +++ b/svg/google-sites.svg @@ -1,13 +1 @@ - - - - - + \ No newline at end of file diff --git a/svg/google-slides.svg b/svg/google-slides.svg index af0645f2..c746ee75 100644 --- a/svg/google-slides.svg +++ b/svg/google-slides.svg @@ -1,97 +1 @@ - - - - Slides-icon - Created with Sketch. - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - \ No newline at end of file + \ No newline at end of file diff --git a/svg/google-street-view.svg b/svg/google-street-view.svg index 2b68317d..29d7d7de 100644 --- a/svg/google-street-view.svg +++ b/svg/google-street-view.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/svg/google-translate.svg b/svg/google-translate.svg index de69a9c5..11dacf99 100644 --- a/svg/google-translate.svg +++ b/svg/google-translate.svg @@ -1,18 +1 @@ - - - - - - - - - - - - - - - - - - + \ No newline at end of file diff --git a/svg/google-tv.svg b/svg/google-tv.svg index fc48954f..b4ca1e62 100644 --- a/svg/google-tv.svg +++ b/svg/google-tv.svg @@ -1,6 +1 @@ - - - - - - + \ No newline at end of file diff --git a/svg/google-voice.svg b/svg/google-voice.svg index 8336c72c..808d75f6 100644 --- a/svg/google-voice.svg +++ b/svg/google-voice.svg @@ -1,13 +1 @@ - - - - - - - - - - - - - \ No newline at end of file + \ No newline at end of file diff --git a/svg/google-wallet.svg b/svg/google-wallet.svg index cac31bbe..39148793 100644 --- a/svg/google-wallet.svg +++ b/svg/google-wallet.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/svg/google-wifi.svg b/svg/google-wifi.svg index eb48b259..12d7a142 100644 --- a/svg/google-wifi.svg +++ b/svg/google-wifi.svg @@ -1,44 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/svg/google.svg b/svg/google.svg index 4cf163bf..8911ecdb 100644 --- a/svg/google.svg +++ b/svg/google.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/svg/gotify.svg b/svg/gotify.svg index b2a9b95a..e75c30dc 100644 --- a/svg/gotify.svg +++ b/svg/gotify.svg @@ -1,182 +1 @@ - - - - - - - - image/svg+xml - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + \ No newline at end of file diff --git a/svg/grafana.svg b/svg/grafana.svg index 7dd09038..0ae81ce3 100644 --- a/svg/grafana.svg +++ b/svg/grafana.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/svg/grav.svg b/svg/grav.svg index 4635b5b3..f101a66e 100644 --- a/svg/grav.svg +++ b/svg/grav.svg @@ -1,2 +1 @@ - -Grav icon \ No newline at end of file + \ No newline at end of file diff --git a/svg/graylog.svg b/svg/graylog.svg index a4671734..b8f1ae00 100644 --- a/svg/graylog.svg +++ b/svg/graylog.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/svg/grist.svg b/svg/grist.svg index e9d11c46..b8d75c3f 100644 --- a/svg/grist.svg +++ b/svg/grist.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/svg/grocy.svg b/svg/grocy.svg index 5e80ca3e..c6efcebd 100644 --- a/svg/grocy.svg +++ b/svg/grocy.svg @@ -1,20 +1 @@ - - - - -Created by potrace 1.15, written by Peter Selinger 2001-2017 - - - - - + \ No newline at end of file diff --git a/svg/guacamole.svg b/svg/guacamole.svg index a7df8022..85817734 100644 --- a/svg/guacamole.svg +++ b/svg/guacamole.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/svg/hammond.svg b/svg/hammond.svg index ce31aaef..8b3431c9 100644 --- a/svg/hammond.svg +++ b/svg/hammond.svg @@ -1,7 +1 @@ - - - - - - - \ No newline at end of file + \ No newline at end of file diff --git a/svg/handbrake.svg b/svg/handbrake.svg index 902887f5..bd2e0300 100644 --- a/svg/handbrake.svg +++ b/svg/handbrake.svg @@ -1,19 +1 @@ - - - - - - - - - - - - - - - - - - - \ No newline at end of file + \ No newline at end of file diff --git a/svg/haproxy.svg b/svg/haproxy.svg index affcb784..015cf30d 100644 --- a/svg/haproxy.svg +++ b/svg/haproxy.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/svg/harbor.svg b/svg/harbor.svg index 682254c3..0566d795 100644 --- a/svg/harbor.svg +++ b/svg/harbor.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/svg/harvester.svg b/svg/harvester.svg index 24d3b7c3..80832b9e 100644 --- a/svg/harvester.svg +++ b/svg/harvester.svg @@ -1 +1 @@ - + \ No newline at end of file diff --git a/svg/hasura.svg b/svg/hasura.svg index e274b3da..d8f0fb52 100644 --- a/svg/hasura.svg +++ b/svg/hasura.svg @@ -1,11 +1 @@ - - - - - - - - - - - + \ No newline at end of file diff --git a/svg/hatsh.svg b/svg/hatsh.svg index 7d30a04a..6d82add7 100644 --- a/svg/hatsh.svg +++ b/svg/hatsh.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/svg/healthchecks.svg b/svg/healthchecks.svg index 086433fa..0a56a520 100644 --- a/svg/healthchecks.svg +++ b/svg/healthchecks.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/svg/heimdall.svg b/svg/heimdall.svg index 6ecfa845..664808f2 100644 --- a/svg/heimdall.svg +++ b/svg/heimdall.svg @@ -1,11 +1 @@ - - - - background - - - - Layer 1 - - - \ No newline at end of file + \ No newline at end of file diff --git a/svg/helium-token.svg b/svg/helium-token.svg index 107a83c7..bb813513 100644 --- a/svg/helium-token.svg +++ b/svg/helium-token.svg @@ -1,20 +1 @@ - - - - - - + \ No newline at end of file diff --git a/svg/hetzner.svg b/svg/hetzner.svg index 6a928edb..812657cb 100644 --- a/svg/hetzner.svg +++ b/svg/hetzner.svg @@ -1,5 +1 @@ - - - - - \ No newline at end of file + \ No newline at end of file diff --git a/svg/hexo.svg b/svg/hexo.svg index 1e23466e..c6a2980b 100644 --- a/svg/hexo.svg +++ b/svg/hexo.svg @@ -1,8 +1 @@ - - - - - - + \ No newline at end of file diff --git a/svg/hikvision.svg b/svg/hikvision.svg index fa04d783..9e864028 100644 --- a/svg/hikvision.svg +++ b/svg/hikvision.svg @@ -1,14 +1 @@ - - Hikvision Logo-R-svg - - - - - - - - - \ No newline at end of file + \ No newline at end of file diff --git a/svg/homarr.svg b/svg/homarr.svg index 540f71bc..9e559aec 100644 --- a/svg/homarr.svg +++ b/svg/homarr.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/svg/home-assistant-alt.svg b/svg/home-assistant-alt.svg index ebf2e2f0..b0e3734f 100644 --- a/svg/home-assistant-alt.svg +++ b/svg/home-assistant-alt.svg @@ -1,2 +1 @@ - -file_type_homeassistant \ No newline at end of file + \ No newline at end of file diff --git a/svg/home-assistant.svg b/svg/home-assistant.svg index 1ff4c190..1fe61224 100644 --- a/svg/home-assistant.svg +++ b/svg/home-assistant.svg @@ -1,2814 +1 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + \ No newline at end of file diff --git a/svg/homebox.svg b/svg/homebox.svg index 08670bbb..bf21e322 100644 --- a/svg/homebox.svg +++ b/svg/homebox.svg @@ -1,11 +1 @@ - - - - - - - - - - - + \ No newline at end of file diff --git a/svg/homebridge.svg b/svg/homebridge.svg index f5be08c5..fbbdbfe5 100644 --- a/svg/homebridge.svg +++ b/svg/homebridge.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/svg/homer.svg b/svg/homer.svg index f7652979..c743f49f 100644 --- a/svg/homer.svg +++ b/svg/homer.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/svg/hoobs.svg b/svg/hoobs.svg index ab75d082..1b1ca9f3 100644 --- a/svg/hoobs.svg +++ b/svg/hoobs.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/svg/hoppscotch.svg b/svg/hoppscotch.svg index 8044120b..c64b3060 100644 --- a/svg/hoppscotch.svg +++ b/svg/hoppscotch.svg @@ -1 +1 @@ - + \ No newline at end of file diff --git a/svg/hotio.svg b/svg/hotio.svg index 9e3e1658..88a68c8b 100644 --- a/svg/hotio.svg +++ b/svg/hotio.svg @@ -1 +1 @@ - + \ No newline at end of file diff --git a/svg/hp.svg b/svg/hp.svg index 8b622f5b..fde96ba2 100644 --- a/svg/hp.svg +++ b/svg/hp.svg @@ -1,4 +1 @@ - - - - + \ No newline at end of file diff --git a/svg/html.svg b/svg/html.svg index b8b075fa..95f9a853 100644 --- a/svg/html.svg +++ b/svg/html.svg @@ -1,8 +1 @@ - - HTML5 Logo - - - - - - \ No newline at end of file + \ No newline at end of file diff --git a/svg/huawei.svg b/svg/huawei.svg index d2a74c24..f959af8a 100644 --- a/svg/huawei.svg +++ b/svg/huawei.svg @@ -1,22301 +1 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - image/svg+xml - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + \ No newline at end of file diff --git a/svg/hubitat.svg b/svg/hubitat.svg index 1521cb1e..4675d28b 100644 --- a/svg/hubitat.svg +++ b/svg/hubitat.svg @@ -1,21 +1 @@ - - - - - - - - - - - - - - - - - - - + \ No newline at end of file diff --git a/svg/hugging-face.svg b/svg/hugging-face.svg new file mode 100644 index 00000000..ab959d16 --- /dev/null +++ b/svg/hugging-face.svg @@ -0,0 +1,8 @@ + + + + + + + + diff --git a/svg/huginn.svg b/svg/huginn.svg index 56839503..028ed0b1 100644 --- a/svg/huginn.svg +++ b/svg/huginn.svg @@ -1,20 +1 @@ - - - - - - - - - - - - - - - - - - - - + \ No newline at end of file diff --git a/svg/hugo.svg b/svg/hugo.svg index d25b4d0c..43deeeb9 100644 --- a/svg/hugo.svg +++ b/svg/hugo.svg @@ -1,15 +1 @@ - - - - - - - - \ No newline at end of file + \ No newline at end of file diff --git a/svg/humhub.svg b/svg/humhub.svg index 01d01d4e..a09349b9 100644 --- a/svg/humhub.svg +++ b/svg/humhub.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/svg/hydra.svg b/svg/hydra.svg index 49e0d3ec..8d8fd3ce 100644 --- a/svg/hydra.svg +++ b/svg/hydra.svg @@ -1,402 +1 @@ - -image/svg+xml \ No newline at end of file + \ No newline at end of file diff --git a/svg/icecast.svg b/svg/icecast.svg index 59961df0..a5ec1243 100644 --- a/svg/icecast.svg +++ b/svg/icecast.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/svg/icinga.svg b/svg/icinga.svg index 43cbc86b..29846252 100644 --- a/svg/icinga.svg +++ b/svg/icinga.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/svg/idrac.svg b/svg/idrac.svg index 0641635a..40ce32cd 100644 --- a/svg/idrac.svg +++ b/svg/idrac.svg @@ -1,47 +1 @@ - - - - - - - image/svg+xml - - - - - - - - - - - - - - + \ No newline at end of file diff --git a/svg/ilo.svg b/svg/ilo.svg index 8b622f5b..fde96ba2 100644 --- a/svg/ilo.svg +++ b/svg/ilo.svg @@ -1,4 +1 @@ - - - - + \ No newline at end of file diff --git a/svg/immich.svg b/svg/immich.svg index 631f2490..4b4b4854 100644 --- a/svg/immich.svg +++ b/svg/immich.svg @@ -1,98 +1 @@ - - - - - - - - - - - - - - - - - - - - - + \ No newline at end of file diff --git a/svg/influxdb.svg b/svg/influxdb.svg index 8d662630..492f7ce8 100644 --- a/svg/influxdb.svg +++ b/svg/influxdb.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/svg/infoblox.svg b/svg/infoblox.svg index 61a3e6a2..bffc5b23 100644 --- a/svg/infoblox.svg +++ b/svg/infoblox.svg @@ -1,48 +1 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - \ No newline at end of file + \ No newline at end of file diff --git a/svg/instagram.svg b/svg/instagram.svg index 77a0d8e8..16b14ab1 100644 --- a/svg/instagram.svg +++ b/svg/instagram.svg @@ -1,21 +1 @@ - - - - - - - - - - - - - - - - - - - - - \ No newline at end of file + \ No newline at end of file diff --git a/svg/inventree.svg b/svg/inventree.svg index f2bb05ff..8bd211fd 100644 --- a/svg/inventree.svg +++ b/svg/inventree.svg @@ -1,291 +1 @@ - - - - - - - - - - - - image/svg+xml - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + \ No newline at end of file diff --git a/svg/invidious.svg b/svg/invidious.svg index 6f545dfb..2875336d 100644 --- a/svg/invidious.svg +++ b/svg/invidious.svg @@ -1,2 +1 @@ - - \ No newline at end of file + \ No newline at end of file diff --git a/svg/invisioncommunity.svg b/svg/invisioncommunity.svg index 65f54eba..db481dac 100644 --- a/svg/invisioncommunity.svg +++ b/svg/invisioncommunity.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/svg/invoiceninja.svg b/svg/invoiceninja.svg index 8e838c8f..238e01d7 100644 --- a/svg/invoiceninja.svg +++ b/svg/invoiceninja.svg @@ -1,2 +1 @@ - -Invoice Ninja icon \ No newline at end of file + \ No newline at end of file diff --git a/svg/iobroker.svg b/svg/iobroker.svg index 56228b9e..736cd619 100644 --- a/svg/iobroker.svg +++ b/svg/iobroker.svg @@ -1,51 +1 @@ - -image/svg+xml - - - - - - - - - - - \ No newline at end of file + \ No newline at end of file diff --git a/svg/ipboard.svg b/svg/ipboard.svg index 65f54eba..db481dac 100644 --- a/svg/ipboard.svg +++ b/svg/ipboard.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/svg/ipfs.svg b/svg/ipfs.svg index 0b9b67de..1611fdd1 100644 --- a/svg/ipfs.svg +++ b/svg/ipfs.svg @@ -1,28 +1 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - + \ No newline at end of file diff --git a/svg/ispconfig.svg b/svg/ispconfig.svg index 4b6886e2..be48435f 100644 --- a/svg/ispconfig.svg +++ b/svg/ispconfig.svg @@ -1,12 +1 @@ - - - - - - - - - - - - + \ No newline at end of file diff --git a/svg/it-tools.svg b/svg/it-tools.svg index ed942cc7..0b575e39 100644 --- a/svg/it-tools.svg +++ b/svg/it-tools.svg @@ -1,6 +1 @@ - - - - - - + \ No newline at end of file diff --git a/svg/jackett.svg b/svg/jackett.svg index 38b759c2..e6b87bbe 100644 --- a/svg/jackett.svg +++ b/svg/jackett.svg @@ -1 +1 @@ - + \ No newline at end of file diff --git a/svg/jaeger.svg b/svg/jaeger.svg index 5c079273..ea4e6245 100644 --- a/svg/jaeger.svg +++ b/svg/jaeger.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/svg/jamstack.svg b/svg/jamstack.svg index 4d82f520..a9cbe333 100644 --- a/svg/jamstack.svg +++ b/svg/jamstack.svg @@ -1 +1 @@ - + \ No newline at end of file diff --git a/svg/java.svg b/svg/java.svg index 80260a72..9f8e76e9 100644 --- a/svg/java.svg +++ b/svg/java.svg @@ -1,41 +1 @@ - - - - - - - - - - - - - - - - - - + \ No newline at end of file diff --git a/svg/javascript.svg b/svg/javascript.svg index 9650ca78..97cf150d 100644 --- a/svg/javascript.svg +++ b/svg/javascript.svg @@ -1,4 +1 @@ - - - - \ No newline at end of file + \ No newline at end of file diff --git a/svg/jeedom.svg b/svg/jeedom.svg index d039e59b..dd2ba1a3 100644 --- a/svg/jeedom.svg +++ b/svg/jeedom.svg @@ -1,142 +1 @@ - - - - - - - - - - - - - - image/svg+xml - - - - - - - - - - - - - - - - - - - - + \ No newline at end of file diff --git a/svg/jekyll.svg b/svg/jekyll.svg index 4d395ff6..9b49f500 100644 --- a/svg/jekyll.svg +++ b/svg/jekyll.svg @@ -1 +1 @@ - + \ No newline at end of file diff --git a/svg/jellyfin.svg b/svg/jellyfin.svg index 5b2e5769..5e74815f 100644 --- a/svg/jellyfin.svg +++ b/svg/jellyfin.svg @@ -1 +1 @@ -icon-transparent \ No newline at end of file + \ No newline at end of file diff --git a/svg/jellyseerr.svg b/svg/jellyseerr.svg index f588de45..096d2a72 100644 --- a/svg/jellyseerr.svg +++ b/svg/jellyseerr.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/svg/jelu.svg b/svg/jelu.svg index 320cc05f..6b23b09e 100644 --- a/svg/jelu.svg +++ b/svg/jelu.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/svg/jenkins.svg b/svg/jenkins.svg index 4a4538da..633df051 100644 --- a/svg/jenkins.svg +++ b/svg/jenkins.svg @@ -1,283 +1 @@ - - - -image/svg+xml \ No newline at end of file + \ No newline at end of file diff --git a/svg/jetbrains-youtrack.svg b/svg/jetbrains-youtrack.svg index 513151be..855603af 100644 --- a/svg/jetbrains-youtrack.svg +++ b/svg/jetbrains-youtrack.svg @@ -1,48 +1 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - \ No newline at end of file + \ No newline at end of file diff --git a/svg/jio.svg b/svg/jio.svg index d66ed010..3c18c773 100644 --- a/svg/jio.svg +++ b/svg/jio.svg @@ -1,115 +1 @@ - - - - -Created by potrace 1.10, written by Peter Selinger 2001-2011 - - - - - - + \ No newline at end of file diff --git a/svg/jira.svg b/svg/jira.svg index 4ace5cc8..4689236e 100644 --- a/svg/jira.svg +++ b/svg/jira.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/svg/jitsi-meet.svg b/svg/jitsi-meet.svg index fb5fed36..77d6d3f2 100644 --- a/svg/jitsi-meet.svg +++ b/svg/jitsi-meet.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/svg/jitsi.svg b/svg/jitsi.svg index 5a3526ac..d64f6d7c 100644 --- a/svg/jitsi.svg +++ b/svg/jitsi.svg @@ -1,650 +1 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - image/svg+xml - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + \ No newline at end of file diff --git a/svg/joomla.svg b/svg/joomla.svg index 1c7e2218..c8a86321 100644 --- a/svg/joomla.svg +++ b/svg/joomla.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/svg/joplin.svg b/svg/joplin.svg index 89e86add..83c2c9f6 100644 --- a/svg/joplin.svg +++ b/svg/joplin.svg @@ -1,86 +1 @@ - -Joplin Iconimage/svg+xmlJoplin IconLaurent Cozic - - - - - - - - - - - - - - - - - + \ No newline at end of file diff --git a/svg/julia.svg b/svg/julia.svg index 169e7a26..f07ffb2f 100644 --- a/svg/julia.svg +++ b/svg/julia.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/svg/jupyter.svg b/svg/jupyter.svg index ab255087..c71c3c03 100644 --- a/svg/jupyter.svg +++ b/svg/jupyter.svg @@ -1,90 +1 @@ - -Group.svg -Created using Figma 0.90 - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + \ No newline at end of file diff --git a/svg/kamatera.svg b/svg/kamatera.svg index f7ed1eb5..6d73bbf7 100644 --- a/svg/kamatera.svg +++ b/svg/kamatera.svg @@ -1,30 +1 @@ - - - - - - - - - - - - - - - - - - - - - - - - - + \ No newline at end of file diff --git a/svg/kanboard.svg b/svg/kanboard.svg index be349082..2a314c3a 100644 --- a/svg/kanboard.svg +++ b/svg/kanboard.svg @@ -1,84 +1 @@ - - - - - - - - - - image/svg+xml - - - - - - - K - B - - +KB \ No newline at end of file diff --git a/svg/kasm-workspaces.svg b/svg/kasm-workspaces.svg index 389f5d4b..21a9e8a5 100644 --- a/svg/kasm-workspaces.svg +++ b/svg/kasm-workspaces.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/svg/kasm.svg b/svg/kasm.svg index 389f5d4b..21a9e8a5 100644 --- a/svg/kasm.svg +++ b/svg/kasm.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/svg/kaufland.svg b/svg/kaufland.svg index c35b4bef..6ee497f4 100644 --- a/svg/kaufland.svg +++ b/svg/kaufland.svg @@ -1,31 +1 @@ - - - - - - - - - - - + \ No newline at end of file diff --git a/svg/kavita.svg b/svg/kavita.svg index f56f8a7c..15ad56bb 100644 --- a/svg/kavita.svg +++ b/svg/kavita.svg @@ -1,124 +1 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + \ No newline at end of file diff --git a/svg/keila.svg b/svg/keila.svg index 9f74cd24..b162e84e 100644 --- a/svg/keila.svg +++ b/svg/keila.svg @@ -1,4 +1 @@ - - - - \ No newline at end of file + \ No newline at end of file diff --git a/svg/kerberos.svg b/svg/kerberos.svg index 686df210..a9d915bd 100644 --- a/svg/kerberos.svg +++ b/svg/kerberos.svg @@ -1,66 +1 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + \ No newline at end of file diff --git a/svg/keycloak.svg b/svg/keycloak.svg index 345e2384..8729aa22 100644 --- a/svg/keycloak.svg +++ b/svg/keycloak.svg @@ -1,259 +1 @@ - - - - - - - - - - - - - keycloak_deliverables - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + \ No newline at end of file diff --git a/svg/kibana.svg b/svg/kibana.svg index 39890168..4663dc88 100644 --- a/svg/kibana.svg +++ b/svg/kibana.svg @@ -1,14 +1 @@ - - - - - - - - - - - - - - \ No newline at end of file + \ No newline at end of file diff --git a/svg/kimai.svg b/svg/kimai.svg index 8b2a6c1e..ea8f21ab 100644 --- a/svg/kimai.svg +++ b/svg/kimai.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/svg/kinto.svg b/svg/kinto.svg index 2bf92ac1..181ed9c7 100644 --- a/svg/kinto.svg +++ b/svg/kinto.svg @@ -1,164 +1 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - \ No newline at end of file + \ No newline at end of file diff --git a/svg/kitana.svg b/svg/kitana.svg index 81c13a48..342ba0ea 100644 --- a/svg/kitana.svg +++ b/svg/kitana.svg @@ -1,15 +1 @@ - - - - - - - - - - + \ No newline at end of file diff --git a/svg/kitchenowl.svg b/svg/kitchenowl.svg index b60dae1b..4859fca4 100644 --- a/svg/kitchenowl.svg +++ b/svg/kitchenowl.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/svg/kiwix.svg b/svg/kiwix.svg index 566b1064..60dbe5af 100644 --- a/svg/kiwix.svg +++ b/svg/kiwix.svg @@ -1,20 +1 @@ - - - - - - + \ No newline at end of file diff --git a/svg/ko-fi.svg b/svg/ko-fi.svg index 9fa99636..1654f8d0 100644 --- a/svg/ko-fi.svg +++ b/svg/ko-fi.svg @@ -1,12 +1 @@ - - - - - - - - - - - - + \ No newline at end of file diff --git a/svg/kodi.svg b/svg/kodi.svg index 9fc13a44..9a9baae4 100644 --- a/svg/kodi.svg +++ b/svg/kodi.svg @@ -1,3 +1 @@ - - - \ No newline at end of file + \ No newline at end of file diff --git a/svg/koel.svg b/svg/koel.svg index 96d756be..3a760984 100644 --- a/svg/koel.svg +++ b/svg/koel.svg @@ -1,15 +1 @@ - - - - - - - - - - - + \ No newline at end of file diff --git a/svg/koillection.svg b/svg/koillection.svg index 55594105..cfddff53 100644 --- a/svg/koillection.svg +++ b/svg/koillection.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/svg/komga.svg b/svg/komga.svg index af9f28d4..a8c2890b 100644 --- a/svg/komga.svg +++ b/svg/komga.svg @@ -1,113 +1 @@ - - - - - - image/svg+xml - - - - - - - - - - - - - - - - - - - - - - - - + \ No newline at end of file diff --git a/svg/kopia.svg b/svg/kopia.svg index 08b885af..4e41b136 100644 --- a/svg/kopia.svg +++ b/svg/kopia.svg @@ -1,50 +1 @@ - -kopia-svgkopia-svg + \ No newline at end of file diff --git a/svg/kotlin.svg b/svg/kotlin.svg index 3480717d..33ac917f 100644 --- a/svg/kotlin.svg +++ b/svg/kotlin.svg @@ -1,34 +1 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + \ No newline at end of file diff --git a/svg/krusader.svg b/svg/krusader.svg index b5d49036..9a413439 100644 --- a/svg/krusader.svg +++ b/svg/krusader.svg @@ -1,67 +1 @@ - - - - - - - - - - - - - - - - - - \ No newline at end of file + \ No newline at end of file diff --git a/svg/kubernetes-dashboard.svg b/svg/kubernetes-dashboard.svg index bedd3b88..1cf09f31 100644 --- a/svg/kubernetes-dashboard.svg +++ b/svg/kubernetes-dashboard.svg @@ -1,84 +1 @@ - - - - - - - - - - image/svg+xml - - - - - - - - - - - - + \ No newline at end of file diff --git a/svg/kubernetes.svg b/svg/kubernetes.svg index bedd3b88..1cf09f31 100644 --- a/svg/kubernetes.svg +++ b/svg/kubernetes.svg @@ -1,84 +1 @@ - - - - - - - - - - image/svg+xml - - - - - - - - - - - - + \ No newline at end of file diff --git a/svg/kutt.svg b/svg/kutt.svg index 031ea53f..b1f87d96 100644 --- a/svg/kutt.svg +++ b/svg/kutt.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/svg/lark.svg b/svg/lark.svg index 6b490dd0..dc899236 100644 --- a/svg/lark.svg +++ b/svg/lark.svg @@ -1,10 +1 @@ - - - - - - - - - - + \ No newline at end of file diff --git a/svg/leanote.svg b/svg/leanote.svg index 31c59c46..ca13395d 100644 --- a/svg/leanote.svg +++ b/svg/leanote.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/svg/lets-encrypt.svg b/svg/lets-encrypt.svg index 7b792dcc..8120986b 100644 --- a/svg/lets-encrypt.svg +++ b/svg/lets-encrypt.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/svg/libreddit.svg b/svg/libreddit.svg index ad6e661d..52f5c69e 100644 --- a/svg/libreddit.svg +++ b/svg/libreddit.svg @@ -1,25 +1 @@ - - - - - - - - - - - - - - - - - - - - - - - - - + \ No newline at end of file diff --git a/svg/librenms.svg b/svg/librenms.svg index 829ebd58..4b3745a1 100644 --- a/svg/librenms.svg +++ b/svg/librenms.svg @@ -1 +1 @@ - + \ No newline at end of file diff --git a/svg/librespeed.svg b/svg/librespeed.svg index 66bc5201..63f5ba3b 100644 --- a/svg/librespeed.svg +++ b/svg/librespeed.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/svg/lidarr.svg b/svg/lidarr.svg index 41c5fb58..a647f37e 100644 --- a/svg/lidarr.svg +++ b/svg/lidarr.svg @@ -1,25 +1 @@ - - - - - - - - - - - - - \ No newline at end of file + \ No newline at end of file diff --git a/svg/lidl.svg b/svg/lidl.svg index b8b3ad4a..24f1d1f4 100644 --- a/svg/lidl.svg +++ b/svg/lidl.svg @@ -1,11 +1 @@ - - - - - - - - - - - + \ No newline at end of file diff --git a/svg/lighttpd.svg b/svg/lighttpd.svg index 4ee578cd..a220e81d 100644 --- a/svg/lighttpd.svg +++ b/svg/lighttpd.svg @@ -1 +1 @@ - + \ No newline at end of file diff --git a/svg/linkace.svg b/svg/linkace.svg index 327e8c80..87fb3285 100644 --- a/svg/linkace.svg +++ b/svg/linkace.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/svg/linkding.svg b/svg/linkding.svg index 701e624c..e6a85c4e 100644 --- a/svg/linkding.svg +++ b/svg/linkding.svg @@ -1,69 +1 @@ - - - - - - - - - - - - - - - + \ No newline at end of file diff --git a/svg/linkedin.svg b/svg/linkedin.svg index 46087a0f..6aeb51e7 100644 --- a/svg/linkedin.svg +++ b/svg/linkedin.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/svg/linode.svg b/svg/linode.svg index 483edfdd..fb91d3fe 100644 --- a/svg/linode.svg +++ b/svg/linode.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/svg/linux-mint.svg b/svg/linux-mint.svg index 2256f4bf..5c7a31f8 100644 --- a/svg/linux-mint.svg +++ b/svg/linux-mint.svg @@ -1,18 +1 @@ - - - - - - - - - - + \ No newline at end of file diff --git a/svg/linuxserver-io.svg b/svg/linuxserver-io.svg index ee207e29..1bbc97d5 100644 --- a/svg/linuxserver-io.svg +++ b/svg/linuxserver-io.svg @@ -1,42 +1 @@ - - - - - - - - - - - - - - - - - - - - - - - - - Asset 1 - - - - - - - - - - - - - - - - - \ No newline at end of file + \ No newline at end of file diff --git a/svg/littlelink-custom.svg b/svg/littlelink-custom.svg index b5f26c1b..5a2109b9 100644 --- a/svg/littlelink-custom.svg +++ b/svg/littlelink-custom.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/svg/lnbits.svg b/svg/lnbits.svg index fe443ed2..058c4b40 100644 --- a/svg/lnbits.svg +++ b/svg/lnbits.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/svg/logitech-gaming.svg b/svg/logitech-gaming.svg index fa65b959..c4cf3511 100644 --- a/svg/logitech-gaming.svg +++ b/svg/logitech-gaming.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/svg/logitech-legacy.svg b/svg/logitech-legacy.svg index c9c0153d..ca846a60 100644 --- a/svg/logitech-legacy.svg +++ b/svg/logitech-legacy.svg @@ -1,96 +1 @@ - - - - - - - - - - - - - - image/svg+xml - - - - - - - - - - - - - - - - - - - - - - + \ No newline at end of file diff --git a/svg/logitech.svg b/svg/logitech.svg index 191c0952..aa707875 100644 --- a/svg/logitech.svg +++ b/svg/logitech.svg @@ -1,9 +1 @@ - - Logitech_logo-svg - - - - - \ No newline at end of file + \ No newline at end of file diff --git a/svg/logstash.svg b/svg/logstash.svg index cf718cd0..ca486ee7 100644 --- a/svg/logstash.svg +++ b/svg/logstash.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/svg/longhorn.svg b/svg/longhorn.svg index 44ee9a76..db454c5c 100644 --- a/svg/longhorn.svg +++ b/svg/longhorn.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/svg/lua.svg b/svg/lua.svg index 1099ab64..1ec93443 100644 --- a/svg/lua.svg +++ b/svg/lua.svg @@ -1,27 +1 @@ - - - - - - - - - - - - - - - - + \ No newline at end of file diff --git a/svg/mailcow.svg b/svg/mailcow.svg index ea3b2796..cf240648 100644 --- a/svg/mailcow.svg +++ b/svg/mailcow.svg @@ -1,179 +1 @@ - - - -image/svg+xml \ No newline at end of file + \ No newline at end of file diff --git a/svg/mailinabox.svg b/svg/mailinabox.svg index af58ec92..9dabfa12 100644 --- a/svg/mailinabox.svg +++ b/svg/mailinabox.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/svg/mainsail.svg b/svg/mainsail.svg index a0fb6d48..493bd421 100644 --- a/svg/mainsail.svg +++ b/svg/mainsail.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/svg/manjaro-linux.svg b/svg/manjaro-linux.svg index 06e65d00..0cc4e90e 100644 --- a/svg/manjaro-linux.svg +++ b/svg/manjaro-linux.svg @@ -1,8 +1 @@ - - - - - - - - + \ No newline at end of file diff --git a/svg/maptiler.svg b/svg/maptiler.svg index 892e33b9..64b65090 100644 --- a/svg/maptiler.svg +++ b/svg/maptiler.svg @@ -1,23 +1 @@ - - - - - - - - - - - - - - - + \ No newline at end of file diff --git a/svg/mariadb.svg b/svg/mariadb.svg index 5ef53219..f5b15ba8 100644 --- a/svg/mariadb.svg +++ b/svg/mariadb.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/svg/mastodon.svg b/svg/mastodon.svg index 87ec2c5a..a18a8c69 100644 --- a/svg/mastodon.svg +++ b/svg/mastodon.svg @@ -1,4 +1 @@ - - - - + \ No newline at end of file diff --git a/svg/matomo.svg b/svg/matomo.svg index 722103a6..2f9512eb 100644 --- a/svg/matomo.svg +++ b/svg/matomo.svg @@ -1,74 +1 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + \ No newline at end of file diff --git a/svg/matrix-synapse.svg b/svg/matrix-synapse.svg index 81fd4a5c..0c54192a 100644 --- a/svg/matrix-synapse.svg +++ b/svg/matrix-synapse.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/svg/matrix.svg b/svg/matrix.svg index 4e5bfb4d..59a0da80 100644 --- a/svg/matrix.svg +++ b/svg/matrix.svg @@ -1,9 +1 @@ - - - Matrix (protocol) logo - - - - - - + \ No newline at end of file diff --git a/svg/mattermost.svg b/svg/mattermost.svg index beafe806..1c99697b 100644 --- a/svg/mattermost.svg +++ b/svg/mattermost.svg @@ -1,8 +1 @@ - - - - - - - - \ No newline at end of file + \ No newline at end of file diff --git a/svg/mautic.svg b/svg/mautic.svg index bc82a2a5..300def60 100644 --- a/svg/mautic.svg +++ b/svg/mautic.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/svg/mealie.svg b/svg/mealie.svg index f1eb1068..b1c31450 100644 --- a/svg/mealie.svg +++ b/svg/mealie.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/svg/mediathekview.svg b/svg/mediathekview.svg index 210e06c8..36f146ca 100644 --- a/svg/mediathekview.svg +++ b/svg/mediathekview.svg @@ -1,40 +1 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - MV - - +MV \ No newline at end of file diff --git a/svg/mediawiki.svg b/svg/mediawiki.svg index 4153f36a..2493aba0 100644 --- a/svg/mediawiki.svg +++ b/svg/mediawiki.svg @@ -1,53 +1 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - \ No newline at end of file + \ No newline at end of file diff --git a/svg/meraki.svg b/svg/meraki.svg index 479225eb..ac2042f1 100644 --- a/svg/meraki.svg +++ b/svg/meraki.svg @@ -1,80 +1 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + \ No newline at end of file diff --git a/svg/mercusys.svg b/svg/mercusys.svg index 9491f954..b9ed7a9c 100644 --- a/svg/mercusys.svg +++ b/svg/mercusys.svg @@ -1,104 +1 @@ - - - - - - - - - - - - - - - - - - - + \ No newline at end of file diff --git a/svg/meta.svg b/svg/meta.svg index e4235dd9..fcead56e 100644 --- a/svg/meta.svg +++ b/svg/meta.svg @@ -1,23 +1 @@ - - Meta_Platforms_Inc - - - - - - - - - - - - - - - - - \ No newline at end of file + \ No newline at end of file diff --git a/svg/metabase.svg b/svg/metabase.svg index 02a366d5..fcd81fce 100644 --- a/svg/metabase.svg +++ b/svg/metabase.svg @@ -1,50 +1 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - \ No newline at end of file + \ No newline at end of file diff --git a/svg/metube.svg b/svg/metube.svg index 25a470be..d7c7d4bf 100644 --- a/svg/metube.svg +++ b/svg/metube.svg @@ -1,8 +1 @@ - - -Created by potrace 1.11, written by Peter Selinger 2001-2013 - - - - - \ No newline at end of file + \ No newline at end of file diff --git a/svg/microsoft-office.svg b/svg/microsoft-office.svg index ea241b66..712b9233 100644 --- a/svg/microsoft-office.svg +++ b/svg/microsoft-office.svg @@ -1,75 +1 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + \ No newline at end of file diff --git a/svg/microsoft-todo.svg b/svg/microsoft-todo.svg index 08ead855..0b42b43b 100644 --- a/svg/microsoft-todo.svg +++ b/svg/microsoft-todo.svg @@ -1 +1 @@ -Todo \ No newline at end of file + \ No newline at end of file diff --git a/svg/mikrotik.svg b/svg/mikrotik.svg index 35a979d4..9d95fe9a 100644 --- a/svg/mikrotik.svg +++ b/svg/mikrotik.svg @@ -1 +1 @@ -MikroTik-logo-2021-ai \ No newline at end of file + \ No newline at end of file diff --git a/svg/minecraft.svg b/svg/minecraft.svg index 44f78337..c97fa89f 100644 --- a/svg/minecraft.svg +++ b/svg/minecraft.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/svg/minio.svg b/svg/minio.svg index 1821bb3d..171b5aac 100644 --- a/svg/minio.svg +++ b/svg/minio.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/svg/mobotix.svg b/svg/mobotix.svg index f1125789..66743481 100644 --- a/svg/mobotix.svg +++ b/svg/mobotix.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/svg/modrinth.svg b/svg/modrinth.svg index 881c835d..88247db8 100644 --- a/svg/modrinth.svg +++ b/svg/modrinth.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/svg/mojeek.svg b/svg/mojeek.svg index 308fc289..042df512 100644 --- a/svg/mojeek.svg +++ b/svg/mojeek.svg @@ -1,58 +1 @@ - - - - - - - - - - - - - - - - - - - - - + \ No newline at end of file diff --git a/svg/monero.svg b/svg/monero.svg index 6dd7e07d..b8db0d45 100644 --- a/svg/monero.svg +++ b/svg/monero.svg @@ -1 +1 @@ -monero \ No newline at end of file + \ No newline at end of file diff --git a/svg/mongodb.svg b/svg/mongodb.svg index ea5c2090..7c931b69 100644 --- a/svg/mongodb.svg +++ b/svg/mongodb.svg @@ -1,4 +1 @@ - - - - + \ No newline at end of file diff --git a/svg/monica.svg b/svg/monica.svg index 5c397c78..8d8ba60b 100644 --- a/svg/monica.svg +++ b/svg/monica.svg @@ -1 +1 @@ -Artboard 3.1Created using Figma \ No newline at end of file + \ No newline at end of file diff --git a/svg/moodle.svg b/svg/moodle.svg index bf20b027..9a8bc2df 100644 --- a/svg/moodle.svg +++ b/svg/moodle.svg @@ -1,41 +1 @@ - - - - - - - image/svg+xml - - - - - - - - - - + \ No newline at end of file diff --git a/svg/motioneye.svg b/svg/motioneye.svg index 69f3c8b5..50a167f5 100644 --- a/svg/motioneye.svg +++ b/svg/motioneye.svg @@ -1,67 +1 @@ - - - -image/svg+xml \ No newline at end of file + \ No newline at end of file diff --git a/svg/mqtt.svg b/svg/mqtt.svg index 9cad0a19..7a7d9806 100644 --- a/svg/mqtt.svg +++ b/svg/mqtt.svg @@ -1,18 +1 @@ - - - - - - - - - - - - - - - + \ No newline at end of file diff --git a/svg/mstream.svg b/svg/mstream.svg index a3d0190d..47999256 100644 --- a/svg/mstream.svg +++ b/svg/mstream.svg @@ -1,32 +1 @@ - -image/svg+xml \ No newline at end of file + \ No newline at end of file diff --git a/svg/mumble.svg b/svg/mumble.svg index f504ae14..78d603ab 100644 --- a/svg/mumble.svg +++ b/svg/mumble.svg @@ -1,552 +1 @@ - - - - - Mumble logo - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - image/svg+xml - - Mumble logo - 2009.08.17 - - - Martin Skilnand - - - - - Martin Skilnand - - - - - Mumble team - - - mumble.svg - https://github.com/mumble-voip/mumble/ - Logo for voice chat program mumble - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + \ No newline at end of file diff --git a/svg/musicbrainz.svg b/svg/musicbrainz.svg index 44fe7db5..3ed67810 100644 --- a/svg/musicbrainz.svg +++ b/svg/musicbrainz.svg @@ -1 +1 @@ -MusicBrainz_logo \ No newline at end of file + \ No newline at end of file diff --git a/svg/mysql.svg b/svg/mysql.svg index 3eee10e5..c1651612 100644 --- a/svg/mysql.svg +++ b/svg/mysql.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/svg/n8n.svg b/svg/n8n.svg index c0d3e6f5..66ab569d 100644 --- a/svg/n8n.svg +++ b/svg/n8n.svg @@ -1,3 +1 @@ - - - + \ No newline at end of file diff --git a/svg/nagios.svg b/svg/nagios.svg index a03cb2d1..b91574b3 100644 --- a/svg/nagios.svg +++ b/svg/nagios.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/svg/navidrome.svg b/svg/navidrome.svg index e9dae534..aea0630c 100644 --- a/svg/navidrome.svg +++ b/svg/navidrome.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/svg/neko.svg b/svg/neko.svg index fb51db52..181e10f7 100644 --- a/svg/neko.svg +++ b/svg/neko.svg @@ -1,34 +1 @@ - - - + \ No newline at end of file diff --git a/svg/neocities.svg b/svg/neocities.svg index f562a999..c702fbee 100644 --- a/svg/neocities.svg +++ b/svg/neocities.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/svg/netapp.svg b/svg/netapp.svg index 1d7fb1c5..e730dc5a 100644 --- a/svg/netapp.svg +++ b/svg/netapp.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/svg/netboot.svg b/svg/netboot.svg index 67f57e4a..828a5983 100644 --- a/svg/netboot.svg +++ b/svg/netboot.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/svg/netbox.svg b/svg/netbox.svg index 61b9b5aa..50a9c701 100644 --- a/svg/netbox.svg +++ b/svg/netbox.svg @@ -1,20 +1 @@ - - - - - - - - - - - - - - - - - - - - + \ No newline at end of file diff --git a/svg/netdata.svg b/svg/netdata.svg index de25a02d..f58dc727 100644 --- a/svg/netdata.svg +++ b/svg/netdata.svg @@ -1 +1 @@ -logo_green_fill \ No newline at end of file + \ No newline at end of file diff --git a/svg/netflix.svg b/svg/netflix.svg index 00252131..badeeef7 100644 --- a/svg/netflix.svg +++ b/svg/netflix.svg @@ -1,88 +1 @@ - - - - - - image/svg+xml - - - - - - - - - - - - - - - - - - - - - - - + \ No newline at end of file diff --git a/svg/netgear.svg b/svg/netgear.svg index 0270e5e3..c0697902 100644 --- a/svg/netgear.svg +++ b/svg/netgear.svg @@ -1,107 +1 @@ - - - - - - - - - - - - image/svg+xml - - - - - - - - - - - - - - - + \ No newline at end of file diff --git a/svg/netlify.svg b/svg/netlify.svg index 80c3726e..45c03c6d 100644 --- a/svg/netlify.svg +++ b/svg/netlify.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/svg/netsurf.svg b/svg/netsurf.svg index 67aa01bc..7c711ef1 100644 --- a/svg/netsurf.svg +++ b/svg/netsurf.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/svg/newsblur.svg b/svg/newsblur.svg index d605136f..75ba8316 100644 --- a/svg/newsblur.svg +++ b/svg/newsblur.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/svg/nextcloud-calendar.svg b/svg/nextcloud-calendar.svg index 51f6ac34..d3b7e8c0 100644 --- a/svg/nextcloud-calendar.svg +++ b/svg/nextcloud-calendar.svg @@ -1,2 +1 @@ - - + \ No newline at end of file diff --git a/svg/nextcloud-cookbook.svg b/svg/nextcloud-cookbook.svg index ce789803..49ed668b 100644 --- a/svg/nextcloud-cookbook.svg +++ b/svg/nextcloud-cookbook.svg @@ -1,5 +1 @@ - - - - - \ No newline at end of file + \ No newline at end of file diff --git a/svg/nextcloud.svg b/svg/nextcloud.svg index c15fb311..007974b6 100644 --- a/svg/nextcloud.svg +++ b/svg/nextcloud.svg @@ -1 +1 @@ -Nextcloud icon \ No newline at end of file + \ No newline at end of file diff --git a/svg/nextdns.svg b/svg/nextdns.svg index 154295c6..e723f060 100644 --- a/svg/nextdns.svg +++ b/svg/nextdns.svg @@ -1 +1 @@ -> \ No newline at end of file +> \ No newline at end of file diff --git a/svg/nextjs.svg b/svg/nextjs.svg index a624303d..e607d2e6 100644 --- a/svg/nextjs.svg +++ b/svg/nextjs.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/svg/nginx-proxy-manager.svg b/svg/nginx-proxy-manager.svg index 23fa2452..78fe63ac 100644 --- a/svg/nginx-proxy-manager.svg +++ b/svg/nginx-proxy-manager.svg @@ -1 +1 @@ -logo \ No newline at end of file + \ No newline at end of file diff --git a/svg/nginx.svg b/svg/nginx.svg index 27062a83..f7a8cbfa 100644 --- a/svg/nginx.svg +++ b/svg/nginx.svg @@ -1,2 +1 @@ - -file_type_nginx \ No newline at end of file + \ No newline at end of file diff --git a/svg/nitter.svg b/svg/nitter.svg index d7b157c0..5ca51f66 100644 --- a/svg/nitter.svg +++ b/svg/nitter.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/svg/nocodb.svg b/svg/nocodb.svg index d4c96f9b..f668dc01 100644 --- a/svg/nocodb.svg +++ b/svg/nocodb.svg @@ -1,10 +1 @@ - - - NocoDB - - - - - - - \ No newline at end of file + \ No newline at end of file diff --git a/svg/node-red.svg b/svg/node-red.svg index b74a46a4..50823755 100644 --- a/svg/node-red.svg +++ b/svg/node-red.svg @@ -1,20 +1 @@ - - - - - - - image/svg+xml - - - - - - - - - - - - - + \ No newline at end of file diff --git a/svg/nodejs-alt.svg b/svg/nodejs-alt.svg index e33a5889..561d749c 100644 --- a/svg/nodejs-alt.svg +++ b/svg/nodejs-alt.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/svg/nodejs.svg b/svg/nodejs.svg index a04a866d..cb033c7b 100644 --- a/svg/nodejs.svg +++ b/svg/nodejs.svg @@ -1 +1 @@ -nodejs-icon \ No newline at end of file + \ No newline at end of file diff --git a/svg/nomad.svg b/svg/nomad.svg index 9e186bd4..2124860e 100644 --- a/svg/nomad.svg +++ b/svg/nomad.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/svg/nomie.svg b/svg/nomie.svg index fdec5655..e88c4701 100644 --- a/svg/nomie.svg +++ b/svg/nomie.svg @@ -1,33 +1 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + \ No newline at end of file diff --git a/svg/ntfy.svg b/svg/ntfy.svg index 2e7528ea..9714157d 100644 --- a/svg/ntfy.svg +++ b/svg/ntfy.svg @@ -1,15 +1 @@ - - - - - - - - - - - - - - - \ No newline at end of file + \ No newline at end of file diff --git a/svg/nzbhydra2.svg b/svg/nzbhydra2.svg index 2feaa88c..ea9ec3ce 100644 --- a/svg/nzbhydra2.svg +++ b/svg/nzbhydra2.svg @@ -1 +1 @@ - + \ No newline at end of file diff --git a/svg/obico.svg b/svg/obico.svg index 72aa3bb5..d77f6b47 100644 --- a/svg/obico.svg +++ b/svg/obico.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/svg/obsidian.svg b/svg/obsidian.svg index 3c0cd3af..4c8c08ee 100644 --- a/svg/obsidian.svg +++ b/svg/obsidian.svg @@ -1,66 +1 @@ - - - - - - image/svg+xml - - - - - - - - - - - - - - - - - + \ No newline at end of file diff --git a/svg/oculus.svg b/svg/oculus.svg index 5489beb9..9a7f5d9e 100644 --- a/svg/oculus.svg +++ b/svg/oculus.svg @@ -1,2 +1 @@ - -Oculus icon \ No newline at end of file + \ No newline at end of file diff --git a/svg/office-365.svg b/svg/office-365.svg index 2d816255..104d5ee2 100644 --- a/svg/office-365.svg +++ b/svg/office-365.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/svg/olivetin.svg b/svg/olivetin.svg index 2f604de2..824b790e 100644 --- a/svg/olivetin.svg +++ b/svg/olivetin.svg @@ -1,109 +1 @@ - - - - - - - - image/svg+xml - - - - - - - - - - - - - - - - + \ No newline at end of file diff --git a/svg/omada.svg b/svg/omada.svg index 6950c7b5..4ddab577 100644 --- a/svg/omada.svg +++ b/svg/omada.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/svg/omnidb.svg b/svg/omnidb.svg index 57d6b619..55e030a8 100644 --- a/svg/omnidb.svg +++ b/svg/omnidb.svg @@ -1,24 +1 @@ - - - - - - - - - - - - - - - - - - - - - - - - + \ No newline at end of file diff --git a/svg/onlyoffice.svg b/svg/onlyoffice.svg index ea9031e5..3c4b3af3 100644 --- a/svg/onlyoffice.svg +++ b/svg/onlyoffice.svg @@ -1,19 +1 @@ - - - - - - - - - - - - - - - - - - - + \ No newline at end of file diff --git a/svg/openai.svg b/svg/openai.svg index 3b4eff96..5eb8c046 100644 --- a/svg/openai.svg +++ b/svg/openai.svg @@ -1,2 +1 @@ - -OpenAI icon \ No newline at end of file + \ No newline at end of file diff --git a/svg/openeats.svg b/svg/openeats.svg index 8ad874bd..cc382938 100644 --- a/svg/openeats.svg +++ b/svg/openeats.svg @@ -1,94 +1 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + \ No newline at end of file diff --git a/svg/openhab.svg b/svg/openhab.svg index 37f48c0c..a465b82a 100644 --- a/svg/openhab.svg +++ b/svg/openhab.svg @@ -1,2 +1 @@ - -file_type_light_openHAB \ No newline at end of file + \ No newline at end of file diff --git a/svg/openmediavault.svg b/svg/openmediavault.svg index c080a615..139f9641 100644 --- a/svg/openmediavault.svg +++ b/svg/openmediavault.svg @@ -1,116 +1 @@ - - - - - OpenMediaVault logo - - - - - - image/svg+xml - - OpenMediaVault logo - - - Volker Theile - - - - - Volker Theile - - - 15.09.2016 - - - - - - - - - - - - - - - + \ No newline at end of file diff --git a/svg/openproject.svg b/svg/openproject.svg index c321ada6..4c46b734 100644 --- a/svg/openproject.svg +++ b/svg/openproject.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/svg/opensearch.svg b/svg/opensearch.svg index 4f8132d1..2410a496 100644 --- a/svg/opensearch.svg +++ b/svg/opensearch.svg @@ -1,5 +1 @@ - - - - - + \ No newline at end of file diff --git a/svg/openstreetmap.svg b/svg/openstreetmap.svg index db5a4eb8..608f45ed 100644 --- a/svg/openstreetmap.svg +++ b/svg/openstreetmap.svg @@ -1,277 +1 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - 010110010011010110010011 - 010110010011010110010011 - - \ No newline at end of file +010110010011010110010011010110010011010110010011 \ No newline at end of file diff --git a/svg/opensuse.svg b/svg/opensuse.svg index d07b613c..1858e4d8 100644 --- a/svg/opensuse.svg +++ b/svg/opensuse.svg @@ -1,47 +1 @@ - - - - - - - image/svg+xml - - - - - - - - - - - - + \ No newline at end of file diff --git a/svg/openvas.svg b/svg/openvas.svg index 50f5ed35..86f2342f 100644 --- a/svg/openvas.svg +++ b/svg/openvas.svg @@ -1,200 +1 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - + \ No newline at end of file diff --git a/svg/openvpn.svg b/svg/openvpn.svg index 7203f28f..200b635d 100644 --- a/svg/openvpn.svg +++ b/svg/openvpn.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/svg/openwrt.svg b/svg/openwrt.svg index d3dd5fbb..6915a930 100644 --- a/svg/openwrt.svg +++ b/svg/openwrt.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/svg/opera-touch.svg b/svg/opera-touch.svg index ff8b6090..259a03da 100644 --- a/svg/opera-touch.svg +++ b/svg/opera-touch.svg @@ -1,16 +1 @@ - - - - - - - - - - - - - - - - \ No newline at end of file + \ No newline at end of file diff --git a/svg/opera.svg b/svg/opera.svg index 6e79822e..fd142af3 100644 --- a/svg/opera.svg +++ b/svg/opera.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/svg/opnsense.svg b/svg/opnsense.svg index a50b6ae9..187615cb 100644 --- a/svg/opnsense.svg +++ b/svg/opnsense.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/svg/oracle-cloud.svg b/svg/oracle-cloud.svg index 561271d2..04c8d413 100644 --- a/svg/oracle-cloud.svg +++ b/svg/oracle-cloud.svg @@ -1,4 +1 @@ - - - - \ No newline at end of file + \ No newline at end of file diff --git a/svg/oracle.svg b/svg/oracle.svg index 561271d2..04c8d413 100644 --- a/svg/oracle.svg +++ b/svg/oracle.svg @@ -1,4 +1 @@ - - - - \ No newline at end of file + \ No newline at end of file diff --git a/svg/orange.svg b/svg/orange.svg index 91f463c5..6f694932 100644 --- a/svg/orange.svg +++ b/svg/orange.svg @@ -1,30 +1 @@ - - - - - - - - - - - - - - - - - + \ No newline at end of file diff --git a/svg/oscarr.svg b/svg/oscarr.svg index ef1e32b0..c1054d01 100644 --- a/svg/oscarr.svg +++ b/svg/oscarr.svg @@ -1,38 +1 @@ - - - - -Created by potrace 1.11, written by Peter Selinger 2001-2013 - - - - - - - + \ No newline at end of file diff --git a/svg/osticket.svg b/svg/osticket.svg index d792c549..3d048492 100644 --- a/svg/osticket.svg +++ b/svg/osticket.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/svg/overseerr.svg b/svg/overseerr.svg index bf29ad5e..744c07ad 100644 --- a/svg/overseerr.svg +++ b/svg/overseerr.svg @@ -1 +1 @@ - + \ No newline at end of file diff --git a/svg/ovh.svg b/svg/ovh.svg index 81e3a7e1..bfab41c9 100644 --- a/svg/ovh.svg +++ b/svg/ovh.svg @@ -1,8 +1 @@ - - 3e4a4a8fbd769c2364c65ec9be89ba69cd363b10-svg - - - \ No newline at end of file + \ No newline at end of file diff --git a/svg/ovirt.svg b/svg/ovirt.svg index b95287f5..95f7ad6d 100644 --- a/svg/ovirt.svg +++ b/svg/ovirt.svg @@ -1 +1 @@ -GitHub Profile Image \ No newline at end of file + \ No newline at end of file diff --git a/svg/owncloud.svg b/svg/owncloud.svg index d15ff27e..6dbefeea 100644 --- a/svg/owncloud.svg +++ b/svg/owncloud.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/svg/palemoon.svg b/svg/palemoon.svg index b6f15242..ca0f6981 100644 --- a/svg/palemoon.svg +++ b/svg/palemoon.svg @@ -1,20 +1 @@ - - - - - - - - - - - - - - - - - - - - \ No newline at end of file + \ No newline at end of file diff --git a/svg/paperless-ng.svg b/svg/paperless-ng.svg index abe07800..a3160c2c 100644 --- a/svg/paperless-ng.svg +++ b/svg/paperless-ng.svg @@ -1,9 +1 @@ - - - - - - - - - \ No newline at end of file + \ No newline at end of file diff --git a/svg/paperless.svg b/svg/paperless.svg index 3144ae90..63a3f699 100644 --- a/svg/paperless.svg +++ b/svg/paperless.svg @@ -1,82 +1 @@ - - - - - - image/svg+xml - - - - - - - - - - - - - - - - - - + \ No newline at end of file diff --git a/svg/papermerge.svg b/svg/papermerge.svg index 59a27979..11f07546 100644 --- a/svg/papermerge.svg +++ b/svg/papermerge.svg @@ -1,695 +1 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - image/svg+xml - - - - - - - - - - - - - - - - - - - - - - + \ No newline at end of file diff --git a/svg/partkeepr.svg b/svg/partkeepr.svg index 46e24a52..af53269a 100644 --- a/svg/partkeepr.svg +++ b/svg/partkeepr.svg @@ -1,125 +1 @@ - - - - - - - - - - - - - - - - - - image/svg+xml - - - - - - - - - - + \ No newline at end of file diff --git a/svg/pastebin.svg b/svg/pastebin.svg index 3a6235d6..b1f92ce5 100644 --- a/svg/pastebin.svg +++ b/svg/pastebin.svg @@ -1 +1 @@ - Pastebin_Integration_Icon_Bit \ No newline at end of file + \ No newline at end of file diff --git a/svg/paypal.svg b/svg/paypal.svg index 0d612ca1..39d12c95 100644 --- a/svg/paypal.svg +++ b/svg/paypal.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/svg/peertube.svg b/svg/peertube.svg index 0e6e228e..10fec0a2 100644 --- a/svg/peertube.svg +++ b/svg/peertube.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/svg/pfsense.svg b/svg/pfsense.svg index 4e91700d..c7479a4b 100644 --- a/svg/pfsense.svg +++ b/svg/pfsense.svg @@ -1 +1 @@ -pfSense \ No newline at end of file + \ No newline at end of file diff --git a/svg/pgadmin.svg b/svg/pgadmin.svg index 6b65997a..4371d2d1 100644 --- a/svg/pgadmin.svg +++ b/svg/pgadmin.svg @@ -1,22 +1 @@ - - - - - - - - - - - - - - - - - - - - - \ No newline at end of file + \ No newline at end of file diff --git a/svg/phoneinfoga.svg b/svg/phoneinfoga.svg index ea7c467c..a7d64152 100644 --- a/svg/phoneinfoga.svg +++ b/svg/phoneinfoga.svg @@ -1,69 +1 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - \ No newline at end of file + \ No newline at end of file diff --git a/svg/photonix.svg b/svg/photonix.svg index c9b58a6e..8f807c6a 100644 --- a/svg/photonix.svg +++ b/svg/photonix.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/svg/photoprism.svg b/svg/photoprism.svg index 5b48471e..df4c3df8 100644 --- a/svg/photoprism.svg +++ b/svg/photoprism.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/svg/photostructure.svg b/svg/photostructure.svg index 622f377c..a21dd352 100644 --- a/svg/photostructure.svg +++ b/svg/photostructure.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/svg/photoview.svg b/svg/photoview.svg index cf466309..fd0fe0f9 100644 --- a/svg/photoview.svg +++ b/svg/photoview.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/svg/php.svg b/svg/php.svg index e4f137cb..ebaac654 100644 --- a/svg/php.svg +++ b/svg/php.svg @@ -1,96 +1 @@ - - - Official PHP Logo - - - - image/svg+xml - - Official PHP Logo - - - Colin Viebrock - - - - - - - - - - - - Copyright Colin Viebrock 1997 - All rights reserved. - - - 1997 - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - \ No newline at end of file + \ No newline at end of file diff --git a/svg/phpmyadmin.svg b/svg/phpmyadmin.svg index c5b36a9f..1b4d5ebe 100644 --- a/svg/phpmyadmin.svg +++ b/svg/phpmyadmin.svg @@ -1,521 +1 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - image/svg+xml - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + \ No newline at end of file diff --git a/svg/pi-hole.svg b/svg/pi-hole.svg index 8a7cc98e..d3ea44e3 100644 --- a/svg/pi-hole.svg +++ b/svg/pi-hole.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/svg/pia.svg b/svg/pia.svg index c5cfc446..b1935992 100644 --- a/svg/pia.svg +++ b/svg/pia.svg @@ -1,53 +1 @@ - - - - pia-robot - Created with Sketch. - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - \ No newline at end of file + \ No newline at end of file diff --git a/svg/pigallery2.svg b/svg/pigallery2.svg index d2faad18..20202e4c 100644 --- a/svg/pigallery2.svg +++ b/svg/pigallery2.svg @@ -1,9 +1 @@ - - - - - - - - - \ No newline at end of file + \ No newline at end of file diff --git a/svg/pikvm.svg b/svg/pikvm.svg index 35d7ee04..e4cdb264 100644 --- a/svg/pikvm.svg +++ b/svg/pikvm.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/svg/pingdom.svg b/svg/pingdom.svg index 7c204661..3c9d9232 100644 --- a/svg/pingdom.svg +++ b/svg/pingdom.svg @@ -1,10 +1 @@ - - - logo-resize - - - - - - - \ No newline at end of file + \ No newline at end of file diff --git a/svg/pingvin.svg b/svg/pingvin.svg index 4f1f7a7b..f0ceb97b 100644 --- a/svg/pingvin.svg +++ b/svg/pingvin.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/svg/pinterest.svg b/svg/pinterest.svg index bf6969ff..4dddc0cc 100644 --- a/svg/pinterest.svg +++ b/svg/pinterest.svg @@ -1,16 +1 @@ - - - - - - - - - - + \ No newline at end of file diff --git a/svg/pioneer.svg b/svg/pioneer.svg index 6ca462e4..af6e49eb 100644 --- a/svg/pioneer.svg +++ b/svg/pioneer.svg @@ -1,7 +1 @@ - - - - - \ No newline at end of file + \ No newline at end of file diff --git a/svg/pirate-proxy.svg b/svg/pirate-proxy.svg index 27e976a1..f70d127a 100644 --- a/svg/pirate-proxy.svg +++ b/svg/pirate-proxy.svg @@ -1,1081 +1 @@ - - - + \ No newline at end of file diff --git a/svg/piwigo.svg b/svg/piwigo.svg index e869635d..eb38a8ac 100644 --- a/svg/piwigo.svg +++ b/svg/piwigo.svg @@ -1,7 +1 @@ - - - - - - - + \ No newline at end of file diff --git a/svg/pixelfed.svg b/svg/pixelfed.svg index 8a188d52..02048704 100644 --- a/svg/pixelfed.svg +++ b/svg/pixelfed.svg @@ -1,101 +1 @@ - - - - icon/color/svg/pixelfed-icon-color - Created with Sketch. - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - \ No newline at end of file + \ No newline at end of file diff --git a/svg/planka.svg b/svg/planka.svg index 61e084cd..aab6a2b1 100644 --- a/svg/planka.svg +++ b/svg/planka.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/svg/plausible.svg b/svg/plausible.svg index 625d753f..b8ace4b0 100644 --- a/svg/plausible.svg +++ b/svg/plausible.svg @@ -1,2 +1 @@ - - + \ No newline at end of file diff --git a/svg/pleroma.svg b/svg/pleroma.svg index 9d846675..773c64aa 100644 --- a/svg/pleroma.svg +++ b/svg/pleroma.svg @@ -1,23 +1 @@ - - - - - - - image/svg+xml - - - - - - - - - - - - - - - - \ No newline at end of file + \ No newline at end of file diff --git a/svg/plesk.svg b/svg/plesk.svg index f1f78804..52b5a9fd 100644 --- a/svg/plesk.svg +++ b/svg/plesk.svg @@ -1,9 +1 @@ - - - - - - - \ No newline at end of file + \ No newline at end of file diff --git a/svg/plex-alt.svg b/svg/plex-alt.svg index bd744599..bc40cab1 100644 --- a/svg/plex-alt.svg +++ b/svg/plex-alt.svg @@ -1,95 +1 @@ - - - - \ No newline at end of file + \ No newline at end of file diff --git a/svg/plex.svg b/svg/plex.svg index dc641671..9c9cfd40 100644 --- a/svg/plex.svg +++ b/svg/plex.svg @@ -1,4 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/svg/plexrequests.svg b/svg/plexrequests.svg index 46b9544b..7aac93d4 100644 --- a/svg/plexrequests.svg +++ b/svg/plexrequests.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/svg/plume.svg b/svg/plume.svg index 8a0e6907..316123aa 100644 --- a/svg/plume.svg +++ b/svg/plume.svg @@ -1,90 +1 @@ - - - - - Plume Logo - Feather - - - - - - image/svg+xml - - Plume Logo - Feather - 2018/10/07 - - - Abdullah Tarawneh (trwnh.com) - - - - - trwnh - - - A Plume concept logo, with a soft stylized feather. Solid path, no fill. - - - - - - - - - - - - - + \ No newline at end of file diff --git a/svg/podify.svg b/svg/podify.svg index 4148c500..2cebecaf 100644 --- a/svg/podify.svg +++ b/svg/podify.svg @@ -1,59 +1 @@ - - + \ No newline at end of file diff --git a/svg/poly.svg b/svg/poly.svg index f02fc61b..5a72af9d 100644 --- a/svg/poly.svg +++ b/svg/poly.svg @@ -1,24 +1 @@ - - Q2'22-Earnings-Presentation-2-pdf-svg - - - - - - - - - - - - - - - - - - - \ No newline at end of file + \ No newline at end of file diff --git a/svg/polywork.svg b/svg/polywork.svg index 5216ddc5..cca9d54d 100644 --- a/svg/polywork.svg +++ b/svg/polywork.svg @@ -1,11 +1 @@ - - - - - - - - - - - + \ No newline at end of file diff --git a/svg/portainer.svg b/svg/portainer.svg index e8c91b36..0db5601b 100644 --- a/svg/portainer.svg +++ b/svg/portainer.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/svg/portus.svg b/svg/portus.svg index e80b6117..0ff691d8 100644 --- a/svg/portus.svg +++ b/svg/portus.svg @@ -1 +1 @@ -Portus logo \ No newline at end of file + \ No newline at end of file diff --git a/svg/poste.svg b/svg/poste.svg index 225188b7..cefd1b0e 100644 --- a/svg/poste.svg +++ b/svg/poste.svg @@ -1,51 +1 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + \ No newline at end of file diff --git a/svg/postgres.svg b/svg/postgres.svg index 6b65997a..4371d2d1 100644 --- a/svg/postgres.svg +++ b/svg/postgres.svg @@ -1,22 +1 @@ - - - - - - - - - - - - - - - - - - - - - \ No newline at end of file + \ No newline at end of file diff --git a/svg/powerdns.svg b/svg/powerdns.svg index 39a111e7..e54e238b 100644 --- a/svg/powerdns.svg +++ b/svg/powerdns.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/svg/printer.svg b/svg/printer.svg index 4c702dc4..f2b8f4a3 100644 --- a/svg/printer.svg +++ b/svg/printer.svg @@ -1,502 +1 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - image/svg+xml - - Printer - - - Jakub Steiner - - - - http://jimmac.musichall.cz - - - printer - local - laser - bubblejet - inkjet - print - output - cups - lpd - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + \ No newline at end of file diff --git a/svg/pritunl.svg b/svg/pritunl.svg index 63bf341d..d1adf0c0 100644 --- a/svg/pritunl.svg +++ b/svg/pritunl.svg @@ -1,72 +1 @@ - - - - - - - - - - image/svg+xml - - - - - - - - - - + \ No newline at end of file diff --git a/svg/privacyidea.svg b/svg/privacyidea.svg index 74feb93e..f5e5ef85 100644 --- a/svg/privacyidea.svg +++ b/svg/privacyidea.svg @@ -1,97 +1 @@ - - - -image/svg+xml \ No newline at end of file + \ No newline at end of file diff --git a/svg/private-internet-access.svg b/svg/private-internet-access.svg index c5cfc446..b1935992 100644 --- a/svg/private-internet-access.svg +++ b/svg/private-internet-access.svg @@ -1,53 +1 @@ - - - - pia-robot - Created with Sketch. - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - \ No newline at end of file + \ No newline at end of file diff --git a/svg/privatebin.svg b/svg/privatebin.svg index 19be7203..078d4fa2 100644 --- a/svg/privatebin.svg +++ b/svg/privatebin.svg @@ -1,255 +1 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - image/svg+xml - - - - - - rugk - - - - - - - - - + \ No newline at end of file diff --git a/svg/projectsend.svg b/svg/projectsend.svg index 50852925..a058783f 100644 --- a/svg/projectsend.svg +++ b/svg/projectsend.svg @@ -1,74 +1 @@ - - - - - - image/svg+xml - - - - - - - - - - - - - - - + \ No newline at end of file diff --git a/svg/prometheus.svg b/svg/prometheus.svg index 5c51f66d..8a359470 100644 --- a/svg/prometheus.svg +++ b/svg/prometheus.svg @@ -1,50 +1 @@ - - - -image/svg+xml \ No newline at end of file + \ No newline at end of file diff --git a/svg/proton-calendar.svg b/svg/proton-calendar.svg index b501b0e7..f23017da 100644 --- a/svg/proton-calendar.svg +++ b/svg/proton-calendar.svg @@ -1,18 +1 @@ - - - - - - - - - - - - - - - - - - + \ No newline at end of file diff --git a/svg/proton-drive.svg b/svg/proton-drive.svg index 7825b10b..4794d0b4 100644 --- a/svg/proton-drive.svg +++ b/svg/proton-drive.svg @@ -1,27 +1 @@ - - - - - - - - - - - - - - - - - + \ No newline at end of file diff --git a/svg/proton-mail.svg b/svg/proton-mail.svg index 59eba656..91f5304c 100644 --- a/svg/proton-mail.svg +++ b/svg/proton-mail.svg @@ -1,15 +1 @@ - - - - - - - - - - - - - - - + \ No newline at end of file diff --git a/svg/proton-vpn.svg b/svg/proton-vpn.svg index 8a7aeb25..e2cb9243 100644 --- a/svg/proton-vpn.svg +++ b/svg/proton-vpn.svg @@ -1,105 +1 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + \ No newline at end of file diff --git a/svg/prowlarr.svg b/svg/prowlarr.svg index 875cff9b..ededa894 100644 --- a/svg/prowlarr.svg +++ b/svg/prowlarr.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/svg/proxmox.svg b/svg/proxmox.svg index bb7d9639..0eacd138 100644 --- a/svg/proxmox.svg +++ b/svg/proxmox.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/svg/prtg.svg b/svg/prtg.svg index 51538a2a..f0eebe27 100644 --- a/svg/prtg.svg +++ b/svg/prtg.svg @@ -1,72 +1 @@ - - - - + \ No newline at end of file diff --git a/svg/pterodactyl.svg b/svg/pterodactyl.svg index f3582adf..37c1b497 100644 --- a/svg/pterodactyl.svg +++ b/svg/pterodactyl.svg @@ -1 +1 @@ -Artboard 1 \ No newline at end of file + \ No newline at end of file diff --git a/svg/pufferpanel.svg b/svg/pufferpanel.svg index c5d411c5..e3054328 100644 --- a/svg/pufferpanel.svg +++ b/svg/pufferpanel.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/svg/pushfish.svg b/svg/pushfish.svg index c79bf71e..d254ca3f 100644 --- a/svg/pushfish.svg +++ b/svg/pushfish.svg @@ -1,178 +1 @@ - - - - - - image/svg+xml - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + \ No newline at end of file diff --git a/svg/pushover.svg b/svg/pushover.svg index 28492a9e..e705b138 100644 --- a/svg/pushover.svg +++ b/svg/pushover.svg @@ -1,7 +1 @@ - - - - - - - + \ No newline at end of file diff --git a/svg/putty.svg b/svg/putty.svg index 7f83e085..34da2114 100644 --- a/svg/putty.svg +++ b/svg/putty.svg @@ -1,45 +1 @@ - - - Profile Picture - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - \ No newline at end of file + \ No newline at end of file diff --git a/svg/pydio.svg b/svg/pydio.svg index aa96a316..18d775c6 100644 --- a/svg/pydio.svg +++ b/svg/pydio.svg @@ -1,17 +1 @@ - - - - - - - - - - + \ No newline at end of file diff --git a/svg/pyload.svg b/svg/pyload.svg index fc1b678e..103d3590 100644 --- a/svg/pyload.svg +++ b/svg/pyload.svg @@ -1,109 +1 @@ - - - pyLoad Logo - - - - image/svg+xml - - pyLoad Logo - - - pyLoad team - - - - - pyload logo - - - Official pyLoad logo - - - pyLoad team - - - - - pyLoad team - - - - - - - - 03/12/2016 - - - - - - - - - - - - - - - - + \ No newline at end of file diff --git a/svg/python.svg b/svg/python.svg index 269bbea5..ec66528f 100644 --- a/svg/python.svg +++ b/svg/python.svg @@ -1,265 +1 @@ - - - - - - - - image/svg+xml - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + \ No newline at end of file diff --git a/svg/qbittorrent.svg b/svg/qbittorrent.svg index 69d8cf62..16d981bf 100644 --- a/svg/qbittorrent.svg +++ b/svg/qbittorrent.svg @@ -1,16 +1 @@ - - - qbittorrent-new-light - - - - - - - - - - - - - \ No newline at end of file + \ No newline at end of file diff --git a/svg/qdirstat.svg b/svg/qdirstat.svg index 194ec867..734b3727 100644 --- a/svg/qdirstat.svg +++ b/svg/qdirstat.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/svg/qinglong.svg b/svg/qinglong.svg index 50b76e85..aa61fce5 100644 --- a/svg/qinglong.svg +++ b/svg/qinglong.svg @@ -1,42 +1 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - \ No newline at end of file + \ No newline at end of file diff --git a/svg/qnap.svg b/svg/qnap.svg index 8c6de4d0..b54e0151 100644 --- a/svg/qnap.svg +++ b/svg/qnap.svg @@ -1,36 +1 @@ - - - - - - - - - - - - - - - - - - - - + \ No newline at end of file diff --git a/svg/questdb.svg b/svg/questdb.svg index e558149d..28c2789e 100644 --- a/svg/questdb.svg +++ b/svg/questdb.svg @@ -1,185 +1 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + \ No newline at end of file diff --git a/svg/qutebrowser.svg b/svg/qutebrowser.svg index 940445d7..52a376ed 100644 --- a/svg/qutebrowser.svg +++ b/svg/qutebrowser.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/svg/r.svg b/svg/r.svg index 389b03c1..4f782383 100644 --- a/svg/r.svg +++ b/svg/r.svg @@ -1,14 +1 @@ - - - - - - - - - - - - - - + \ No newline at end of file diff --git a/svg/rabbitmq.svg b/svg/rabbitmq.svg index ab4c8693..9e980e8a 100644 --- a/svg/rabbitmq.svg +++ b/svg/rabbitmq.svg @@ -1,2 +1 @@ - - \ No newline at end of file + \ No newline at end of file diff --git a/svg/radarr.svg b/svg/radarr.svg index 93a4c923..bb4a079e 100644 --- a/svg/radarr.svg +++ b/svg/radarr.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/svg/radicale.svg b/svg/radicale.svg index 546d3d10..d1347c5c 100644 --- a/svg/radicale.svg +++ b/svg/radicale.svg @@ -1,10 +1 @@ - - - - - - - - - - + \ No newline at end of file diff --git a/svg/rainloop.svg b/svg/rainloop.svg index 47b9fc98..874a028f 100644 --- a/svg/rainloop.svg +++ b/svg/rainloop.svg @@ -1,19 +1 @@ - - - - background - - - - Layer 1 - - - - - - - - - - - \ No newline at end of file + \ No newline at end of file diff --git a/svg/rancher.svg b/svg/rancher.svg index 8353dec6..8a799762 100644 --- a/svg/rancher.svg +++ b/svg/rancher.svg @@ -1,26 +1 @@ - - - - - - - - - - - - - - \ No newline at end of file + \ No newline at end of file diff --git a/svg/raspberrypi.svg b/svg/raspberrypi.svg index 27192bef..7dd5961b 100644 --- a/svg/raspberrypi.svg +++ b/svg/raspberrypi.svg @@ -1,17 +1 @@ - - - - - - - - - - - - - - - - - + \ No newline at end of file diff --git a/svg/rclone.svg b/svg/rclone.svg index 9259cbb0..85906975 100644 --- a/svg/rclone.svg +++ b/svg/rclone.svg @@ -1,102 +1 @@ - -image/svg+xml - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - \ No newline at end of file + \ No newline at end of file diff --git a/svg/rdt-client.svg b/svg/rdt-client.svg index d6b616c9..76229534 100644 --- a/svg/rdt-client.svg +++ b/svg/rdt-client.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/svg/readarr.svg b/svg/readarr.svg index faae05f7..ab463b27 100644 --- a/svg/readarr.svg +++ b/svg/readarr.svg @@ -1 +1 @@ - + \ No newline at end of file diff --git a/svg/readthedocs.svg b/svg/readthedocs.svg index 5b9d16d1..dd16b714 100644 --- a/svg/readthedocs.svg +++ b/svg/readthedocs.svg @@ -1,22 +1 @@ - - - - + \ No newline at end of file diff --git a/svg/real-debrid.svg b/svg/real-debrid.svg index d6b616c9..76229534 100644 --- a/svg/real-debrid.svg +++ b/svg/real-debrid.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/svg/recalbox.svg b/svg/recalbox.svg index 1e4e6fbf..44553aac 100644 --- a/svg/recalbox.svg +++ b/svg/recalbox.svg @@ -1,107 +1 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + \ No newline at end of file diff --git a/svg/recipesage.svg b/svg/recipesage.svg index caef868a..511d721d 100644 --- a/svg/recipesage.svg +++ b/svg/recipesage.svg @@ -1,8 +1 @@ - - -Created by potrace 1.11, written by Peter Selinger 2001-2013 - - - - - \ No newline at end of file + \ No newline at end of file diff --git a/svg/reddit.svg b/svg/reddit.svg index 065fb2c4..d6f83690 100644 --- a/svg/reddit.svg +++ b/svg/reddit.svg @@ -1,36 +1 @@ - - - - - - - - - - - - - - - - - - - - - - - + \ No newline at end of file diff --git a/svg/redis.svg b/svg/redis.svg index ed312206..f5bc31b3 100644 --- a/svg/redis.svg +++ b/svg/redis.svg @@ -1,2 +1 @@ - - \ No newline at end of file + \ No newline at end of file diff --git a/svg/requestrr.svg b/svg/requestrr.svg index 4c299ce6..4ac9902d 100644 --- a/svg/requestrr.svg +++ b/svg/requestrr.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/svg/resiliosync.svg b/svg/resiliosync.svg index ce7c7aed..170f9bbc 100644 --- a/svg/resiliosync.svg +++ b/svg/resiliosync.svg @@ -1,20 +1 @@ - - - - - - - - - - - - + \ No newline at end of file diff --git a/svg/rhasspy.svg b/svg/rhasspy.svg index 9d351ce9..df7e6d79 100644 --- a/svg/rhasspy.svg +++ b/svg/rhasspy.svg @@ -1,123 +1 @@ - - - - - - - - - - image/svg+xml - - - - - - - - - - - - - - - - - - - - + \ No newline at end of file diff --git a/svg/rhodecode.svg b/svg/rhodecode.svg index 66f00111..2299767a 100644 --- a/svg/rhodecode.svg +++ b/svg/rhodecode.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/svg/riot.svg b/svg/riot.svg index b99f6d38..2953ac70 100644 --- a/svg/riot.svg +++ b/svg/riot.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/svg/rocketchat.svg b/svg/rocketchat.svg index e6e5e80c..64eae80a 100644 --- a/svg/rocketchat.svg +++ b/svg/rocketchat.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/svg/rocky-linux.svg b/svg/rocky-linux.svg index 58f22104..87420576 100644 --- a/svg/rocky-linux.svg +++ b/svg/rocky-linux.svg @@ -1,3 +1 @@ - - - + \ No newline at end of file diff --git a/svg/rook.svg b/svg/rook.svg index 7a44dd4f..ffd4b022 100644 --- a/svg/rook.svg +++ b/svg/rook.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/svg/roundcube.svg b/svg/roundcube.svg index 1f50dd8a..5b85f236 100644 --- a/svg/roundcube.svg +++ b/svg/roundcube.svg @@ -1,15 +1 @@ - - - - - - - - - - + \ No newline at end of file diff --git a/svg/router.svg b/svg/router.svg index ee9fded2..aba68cc9 100644 --- a/svg/router.svg +++ b/svg/router.svg @@ -1,153 +1 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + \ No newline at end of file diff --git a/svg/rport.svg b/svg/rport.svg index 2d7c4d6f..2495c66b 100644 --- a/svg/rport.svg +++ b/svg/rport.svg @@ -1,6 +1 @@ - - - - - + \ No newline at end of file diff --git a/svg/rss-bridge.svg b/svg/rss-bridge.svg index 0870bf6a..dd92ed4c 100644 --- a/svg/rss-bridge.svg +++ b/svg/rss-bridge.svg @@ -1,122 +1 @@ - - - - - - - - - - image/svg+xml - - - - - - - - - Bridge - rss - - - - + \ No newline at end of file diff --git a/svg/rstudio.svg b/svg/rstudio.svg index f29dd901..26dbc7f3 100644 --- a/svg/rstudio.svg +++ b/svg/rstudio.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/svg/rstudioserver.svg b/svg/rstudioserver.svg index f29dd901..26dbc7f3 100644 --- a/svg/rstudioserver.svg +++ b/svg/rstudioserver.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/svg/ruby.svg b/svg/ruby.svg index 59cf324f..84b25af9 100644 --- a/svg/ruby.svg +++ b/svg/ruby.svg @@ -1,948 +1 @@ - - - -image/svg+xml - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - \ No newline at end of file + \ No newline at end of file diff --git a/svg/rundeck.svg b/svg/rundeck.svg index 4ded97a8..9a361539 100644 --- a/svg/rundeck.svg +++ b/svg/rundeck.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/svg/runonflux.svg b/svg/runonflux.svg index 5f144cca..11cfe30d 100644 --- a/svg/runonflux.svg +++ b/svg/runonflux.svg @@ -1 +1 @@ -flux-flux-logo \ No newline at end of file + \ No newline at end of file diff --git a/svg/rust.svg b/svg/rust.svg index dd830c26..fb14806c 100644 --- a/svg/rust.svg +++ b/svg/rust.svg @@ -1,57 +1 @@ - - - \ No newline at end of file + \ No newline at end of file diff --git a/svg/rustdesk.svg b/svg/rustdesk.svg index 6c801233..3bc4d62b 100644 --- a/svg/rustdesk.svg +++ b/svg/rustdesk.svg @@ -1,5 +1 @@ - - - - - + \ No newline at end of file diff --git a/svg/rutorrent.svg b/svg/rutorrent.svg index d20c79c8..5d0d17dd 100644 --- a/svg/rutorrent.svg +++ b/svg/rutorrent.svg @@ -1,155 +1 @@ - - - - + \ No newline at end of file diff --git a/svg/sabnzbd-alt.svg b/svg/sabnzbd-alt.svg index ffa59a39..22eaf51e 100644 --- a/svg/sabnzbd-alt.svg +++ b/svg/sabnzbd-alt.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/svg/sabnzbd.svg b/svg/sabnzbd.svg index 9c03a07c..a6aec3ae 100644 --- a/svg/sabnzbd.svg +++ b/svg/sabnzbd.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/svg/safari-ios.svg b/svg/safari-ios.svg index c04ad582..75f3e891 100644 --- a/svg/safari-ios.svg +++ b/svg/safari-ios.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/svg/samsung-internet.svg b/svg/samsung-internet.svg index 5b2caa93..5a1c7f39 100644 --- a/svg/samsung-internet.svg +++ b/svg/samsung-internet.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/svg/sandstorm.svg b/svg/sandstorm.svg index 4d5dae09..462be973 100644 --- a/svg/sandstorm.svg +++ b/svg/sandstorm.svg @@ -1,395 +1 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + \ No newline at end of file diff --git a/svg/scrutiny.svg b/svg/scrutiny.svg index 1fc3077a..70cb133f 100644 --- a/svg/scrutiny.svg +++ b/svg/scrutiny.svg @@ -1,19 +1 @@ - - - - background - - - - Layer 1 - - - - - - - - - - - \ No newline at end of file + \ No newline at end of file diff --git a/svg/seafile.svg b/svg/seafile.svg index 045506ca..94eb94d5 100644 --- a/svg/seafile.svg +++ b/svg/seafile.svg @@ -1,5 +1 @@ - - - - - \ No newline at end of file + \ No newline at end of file diff --git a/svg/searx.svg b/svg/searx.svg index 45eecb16..51c40434 100644 --- a/svg/searx.svg +++ b/svg/searx.svg @@ -1,198 +1 @@ - - - - - - - - - - - - - - - - - - - - - - - - - image/svg+xml - - - - - - - - - - - - - - - - + \ No newline at end of file diff --git a/svg/searxng.svg b/svg/searxng.svg index 417e7edf..26241450 100644 --- a/svg/searxng.svg +++ b/svg/searxng.svg @@ -1,19 +1 @@ - - - - - - - image/svg+xml - - - - - - - - - - - - \ No newline at end of file + \ No newline at end of file diff --git a/svg/sendinblue.svg b/svg/sendinblue.svg index 24196d93..74ca478b 100644 --- a/svg/sendinblue.svg +++ b/svg/sendinblue.svg @@ -1,3 +1 @@ - - - + \ No newline at end of file diff --git a/svg/sensu.svg b/svg/sensu.svg index 6ffb4f2b..9058da05 100644 --- a/svg/sensu.svg +++ b/svg/sensu.svg @@ -1,7 +1 @@ - - - - - - - \ No newline at end of file + \ No newline at end of file diff --git a/svg/sentry.svg b/svg/sentry.svg index 3b463206..7abc5eae 100644 --- a/svg/sentry.svg +++ b/svg/sentry.svg @@ -1,6 +1 @@ - - - - - - \ No newline at end of file + \ No newline at end of file diff --git a/svg/servarr.svg b/svg/servarr.svg index 8552faec..4338f065 100644 --- a/svg/servarr.svg +++ b/svg/servarr.svg @@ -1 +1 @@ -servarr_light_ \ No newline at end of file + \ No newline at end of file diff --git a/svg/serviio.svg b/svg/serviio.svg index 8088854e..bb7933fa 100644 --- a/svg/serviio.svg +++ b/svg/serviio.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/svg/shell-tips.svg b/svg/shell-tips.svg index beaf7b9b..fea4f134 100644 --- a/svg/shell-tips.svg +++ b/svg/shell-tips.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/svg/shell.svg b/svg/shell.svg index d4039fdb..26276312 100644 --- a/svg/shell.svg +++ b/svg/shell.svg @@ -1 +1 @@ -BASH_logo-transparent-bg-bw \ No newline at end of file + \ No newline at end of file diff --git a/svg/shellngn.svg b/svg/shellngn.svg index c889889d..a7442c8e 100644 --- a/svg/shellngn.svg +++ b/svg/shellngn.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/svg/shelly.svg b/svg/shelly.svg index 7b8c8c09..f80639bc 100644 --- a/svg/shelly.svg +++ b/svg/shelly.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/svg/shiori.svg b/svg/shiori.svg index 345c7ca0..7d493b64 100644 --- a/svg/shiori.svg +++ b/svg/shiori.svg @@ -1,48 +1 @@ - - - - - - - image/svg+xml - - - - - - - - - - - - + \ No newline at end of file diff --git a/svg/shlink.svg b/svg/shlink.svg index c275463f..61a35ccb 100644 --- a/svg/shlink.svg +++ b/svg/shlink.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/svg/shoko.svg b/svg/shoko.svg index 66372bf0..bea2e36b 100644 --- a/svg/shoko.svg +++ b/svg/shoko.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/svg/sickbeard.svg b/svg/sickbeard.svg index 46fb6cc9..e444276f 100644 --- a/svg/sickbeard.svg +++ b/svg/sickbeard.svg @@ -1,106 +1 @@ - - - - - - image/svg+xml - - - - - - - - - - - - - - - - - - - - - - - - - + \ No newline at end of file diff --git a/svg/simplelogin.svg b/svg/simplelogin.svg index 7d3e1983..327fb763 100644 --- a/svg/simplelogin.svg +++ b/svg/simplelogin.svg @@ -1,20 +1 @@ - - - - - - - - - - - - - - - - - - - - + \ No newline at end of file diff --git a/svg/sinusbot.svg b/svg/sinusbot.svg index 7732c770..1053c982 100644 --- a/svg/sinusbot.svg +++ b/svg/sinusbot.svg @@ -1,16 +1 @@ - - WebAilesi - WebAilesi'nin izni olmadan kopyalanması ve dağıtılması kesinlikle yasaktır. - - - - + \ No newline at end of file diff --git a/svg/skype.svg b/svg/skype.svg index 80e6d5f0..4cf2260f 100644 --- a/svg/skype.svg +++ b/svg/skype.svg @@ -1,35 +1 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - \ No newline at end of file + \ No newline at end of file diff --git a/svg/slack.svg b/svg/slack.svg index fb55f724..1f9731dd 100644 --- a/svg/slack.svg +++ b/svg/slack.svg @@ -1,6 +1 @@ - - - - - - + \ No newline at end of file diff --git a/svg/slice.svg b/svg/slice.svg new file mode 100644 index 00000000..8503e26a --- /dev/null +++ b/svg/slice.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/svg/snapchat.svg b/svg/snapchat.svg index a785a354..3d5e77aa 100644 --- a/svg/snapchat.svg +++ b/svg/snapchat.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/svg/snapdrop.svg b/svg/snapdrop.svg index 40a17569..c0093268 100644 --- a/svg/snapdrop.svg +++ b/svg/snapdrop.svg @@ -1,48 +1 @@ - - - - + \ No newline at end of file diff --git a/svg/sogo.svg b/svg/sogo.svg index 8411e9c4..ae0dbfe3 100644 --- a/svg/sogo.svg +++ b/svg/sogo.svg @@ -1,11 +1 @@ - - - - - - - - - - - + \ No newline at end of file diff --git a/svg/sonarqube.svg b/svg/sonarqube.svg index c6bb3072..83079af4 100644 --- a/svg/sonarqube.svg +++ b/svg/sonarqube.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/svg/sonarr.svg b/svg/sonarr.svg index 86c9243d..fc699468 100644 --- a/svg/sonarr.svg +++ b/svg/sonarr.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/svg/sourcegraph.svg b/svg/sourcegraph.svg index 81f0bbd7..d41c9c6e 100644 --- a/svg/sourcegraph.svg +++ b/svg/sourcegraph.svg @@ -1,12 +1 @@ - - - - - - - - - - - - \ No newline at end of file + \ No newline at end of file diff --git a/svg/spamassassin.svg b/svg/spamassassin.svg index e46f55be..490c1688 100644 --- a/svg/spamassassin.svg +++ b/svg/spamassassin.svg @@ -1,337 +1 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + \ No newline at end of file diff --git a/svg/sparkleshare.svg b/svg/sparkleshare.svg index 25515112..94d79a88 100644 --- a/svg/sparkleshare.svg +++ b/svg/sparkleshare.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/svg/sphinx-doc.svg b/svg/sphinx-doc.svg index e68cf0fa..8f3b1d96 100644 --- a/svg/sphinx-doc.svg +++ b/svg/sphinx-doc.svg @@ -1,8 +1 @@ - - - - \ No newline at end of file + \ No newline at end of file diff --git a/svg/sphinx-relay.svg b/svg/sphinx-relay.svg index d1dfd5f2..8dea57cb 100644 --- a/svg/sphinx-relay.svg +++ b/svg/sphinx-relay.svg @@ -1,4 +1 @@ - - - - + \ No newline at end of file diff --git a/svg/sphinx.svg b/svg/sphinx.svg index e68cf0fa..8f3b1d96 100644 --- a/svg/sphinx.svg +++ b/svg/sphinx.svg @@ -1,8 +1 @@ - - - - \ No newline at end of file + \ No newline at end of file diff --git a/svg/splunk.svg b/svg/splunk.svg index e521d4ee..b6cfc5b4 100644 --- a/svg/splunk.svg +++ b/svg/splunk.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/svg/spotify.svg b/svg/spotify.svg index 4f2e8032..506cd26c 100644 --- a/svg/spotify.svg +++ b/svg/spotify.svg @@ -1,5 +1 @@ - - - - - \ No newline at end of file + \ No newline at end of file diff --git a/svg/sqlitebrowser.svg b/svg/sqlitebrowser.svg index 7817ec7a..355f8805 100644 --- a/svg/sqlitebrowser.svg +++ b/svg/sqlitebrowser.svg @@ -1,391 +1 @@ - - - logo - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - image/svg+xml - - logo - - - - - - https://sqlitebrowser.org - - - - - DB Browser for SQLite Logo - 2020Jun05 - - - GPL3+ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + \ No newline at end of file diff --git a/svg/squidex.svg b/svg/squidex.svg index 705633a6..a6d59426 100644 --- a/svg/squidex.svg +++ b/svg/squidex.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/svg/sshwifty.svg b/svg/sshwifty.svg index 3b8c5835..9ff194b1 100644 --- a/svg/sshwifty.svg +++ b/svg/sshwifty.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/svg/startpage.svg b/svg/startpage.svg index 371a3c6e..f3ff9ab9 100644 --- a/svg/startpage.svg +++ b/svg/startpage.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/svg/stash.svg b/svg/stash.svg index b4506025..67d8c74e 100644 --- a/svg/stash.svg +++ b/svg/stash.svg @@ -1 +1 @@ - + \ No newline at end of file diff --git a/svg/stirling-pdf.svg b/svg/stirling-pdf.svg index 700e6444..56059d29 100644 --- a/svg/stirling-pdf.svg +++ b/svg/stirling-pdf.svg @@ -1,298 +1 @@ - - - - + \ No newline at end of file diff --git a/svg/storj.svg b/svg/storj.svg index 1efb1991..e63dda13 100644 --- a/svg/storj.svg +++ b/svg/storj.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/svg/strapi.svg b/svg/strapi.svg index 2a7da369..a270e4ab 100644 --- a/svg/strapi.svg +++ b/svg/strapi.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/svg/supermicro.svg b/svg/supermicro.svg index b839d041..346a8acd 100644 --- a/svg/supermicro.svg +++ b/svg/supermicro.svg @@ -1,72 +1 @@ - - - - - - - - - - - - - - - - - - - - + \ No newline at end of file diff --git a/svg/swift.svg b/svg/swift.svg index 21480603..4cabae1c 100644 --- a/svg/swift.svg +++ b/svg/swift.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/svg/symmetricom.svg b/svg/symmetricom.svg index 952e1c34..e5ae8973 100644 --- a/svg/symmetricom.svg +++ b/svg/symmetricom.svg @@ -1 +1 @@ - + \ No newline at end of file diff --git a/svg/syncthing.svg b/svg/syncthing.svg index 7c112fa8..f12a993a 100644 --- a/svg/syncthing.svg +++ b/svg/syncthing.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/svg/synology-dsm.svg b/svg/synology-dsm.svg index 791dee67..38b0f499 100644 --- a/svg/synology-dsm.svg +++ b/svg/synology-dsm.svg @@ -1,3 +1 @@ - - - + \ No newline at end of file diff --git a/svg/synology.svg b/svg/synology.svg index 2d8a846a..73ca4bb5 100644 --- a/svg/synology.svg +++ b/svg/synology.svg @@ -1,5 +1 @@ - - - - - \ No newline at end of file + \ No newline at end of file diff --git a/svg/taiga.svg b/svg/taiga.svg index 2975e0c8..1a46f1cf 100644 --- a/svg/taiga.svg +++ b/svg/taiga.svg @@ -1,14 +1 @@ - - - - - - - - - - - - - - + \ No newline at end of file diff --git a/svg/tailscale.svg b/svg/tailscale.svg index 986b115a..2b5100b4 100644 --- a/svg/tailscale.svg +++ b/svg/tailscale.svg @@ -1,13 +1 @@ - - - - - - - - - - - - - + \ No newline at end of file diff --git a/svg/tandoor.svg b/svg/tandoor.svg index 01c93f04..9946f911 100644 --- a/svg/tandoor.svg +++ b/svg/tandoor.svg @@ -1,43 +1 @@ - - - - - - - - + \ No newline at end of file diff --git a/svg/tandoorrecipes.svg b/svg/tandoorrecipes.svg index 01c93f04..9946f911 100644 --- a/svg/tandoorrecipes.svg +++ b/svg/tandoorrecipes.svg @@ -1,43 +1 @@ - - - - - - - - + \ No newline at end of file diff --git a/svg/taskcafe.svg b/svg/taskcafe.svg index efe8e087..9de9a9e5 100644 --- a/svg/taskcafe.svg +++ b/svg/taskcafe.svg @@ -1,189 +1 @@ - - - - - - image/svg+xml - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + \ No newline at end of file diff --git a/svg/tasmota.svg b/svg/tasmota.svg index 43f86da1..0ba5461c 100644 --- a/svg/tasmota.svg +++ b/svg/tasmota.svg @@ -1 +1 @@ -Element 1 \ No newline at end of file + \ No newline at end of file diff --git a/svg/tautulli.svg b/svg/tautulli.svg index 628d67eb..000c755a 100644 --- a/svg/tautulli.svg +++ b/svg/tautulli.svg @@ -1 +1 @@ - + \ No newline at end of file diff --git a/svg/teamcity.svg b/svg/teamcity.svg index 35091470..c63a9961 100644 --- a/svg/teamcity.svg +++ b/svg/teamcity.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/svg/telegraf.svg b/svg/telegraf.svg index d4ef1154..09df3790 100644 --- a/svg/telegraf.svg +++ b/svg/telegraf.svg @@ -1,9 +1 @@ - - - - - - - - - + \ No newline at end of file diff --git a/svg/telegram.svg b/svg/telegram.svg index 6f88d42b..8b1949d1 100644 --- a/svg/telegram.svg +++ b/svg/telegram.svg @@ -1 +1 @@ -Telegram_logo \ No newline at end of file + \ No newline at end of file diff --git a/svg/teleport.svg b/svg/teleport.svg index 045f91fb..43e36fbc 100644 --- a/svg/teleport.svg +++ b/svg/teleport.svg @@ -1,74 +1 @@ - - - - teleport medallion - Created with Sketch. - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - \ No newline at end of file + \ No newline at end of file diff --git a/svg/tenda.svg b/svg/tenda.svg index 71f194ae..fc9aada2 100644 --- a/svg/tenda.svg +++ b/svg/tenda.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/svg/terminal.svg b/svg/terminal.svg index 905b181d..db968163 100644 --- a/svg/terminal.svg +++ b/svg/terminal.svg @@ -1,44 +1 @@ - - - - - Adwaita Icon Template - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + \ No newline at end of file diff --git a/svg/terraform.svg b/svg/terraform.svg index b062f13f..37d94e48 100644 --- a/svg/terraform.svg +++ b/svg/terraform.svg @@ -1,2 +1 @@ - - \ No newline at end of file + \ No newline at end of file diff --git a/svg/teslamate.svg b/svg/teslamate.svg index 4500f2c7..ef4da916 100644 --- a/svg/teslamate.svg +++ b/svg/teslamate.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/svg/thanos.svg b/svg/thanos.svg index 9c2223c3..b60e25b7 100644 --- a/svg/thanos.svg +++ b/svg/thanos.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/svg/the-pirate-bay.svg b/svg/the-pirate-bay.svg index 27e976a1..f70d127a 100644 --- a/svg/the-pirate-bay.svg +++ b/svg/the-pirate-bay.svg @@ -1,1081 +1 @@ - - - + \ No newline at end of file diff --git a/svg/the-proxy-bay.svg b/svg/the-proxy-bay.svg index 27e976a1..f70d127a 100644 --- a/svg/the-proxy-bay.svg +++ b/svg/the-proxy-bay.svg @@ -1,1081 +1 @@ - - - + \ No newline at end of file diff --git a/svg/theia.svg b/svg/theia.svg index afecc56d..7910e47c 100644 --- a/svg/theia.svg +++ b/svg/theia.svg @@ -1,27 +1 @@ - - - - - - - - - - - + \ No newline at end of file diff --git a/svg/thelounge.svg b/svg/thelounge.svg index b05918bb..1e6ae685 100644 --- a/svg/thelounge.svg +++ b/svg/thelounge.svg @@ -1 +1 @@ - + \ No newline at end of file diff --git a/svg/theodinproject.svg b/svg/theodinproject.svg index a2a101db..3b5eb96a 100644 --- a/svg/theodinproject.svg +++ b/svg/theodinproject.svg @@ -1,14 +1 @@ - - - - - - - - - - - - - - + \ No newline at end of file diff --git a/svg/thingsboard.svg b/svg/thingsboard.svg index ff80eac2..7914734a 100644 --- a/svg/thingsboard.svg +++ b/svg/thingsboard.svg @@ -1,10 +1 @@ - - - - - - - - - - \ No newline at end of file + \ No newline at end of file diff --git a/svg/thunderbird.svg b/svg/thunderbird.svg index 17ef859e..027ec64a 100644 --- a/svg/thunderbird.svg +++ b/svg/thunderbird.svg @@ -1,253 +1 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + \ No newline at end of file diff --git a/svg/tiktok.svg b/svg/tiktok.svg index 6c72acb5..efd24e93 100644 --- a/svg/tiktok.svg +++ b/svg/tiktok.svg @@ -1,2 +1 @@ - - \ No newline at end of file + \ No newline at end of file diff --git a/svg/timetagger.svg b/svg/timetagger.svg index 6bbb8b08..c8c9086a 100644 --- a/svg/timetagger.svg +++ b/svg/timetagger.svg @@ -1,13 +1 @@ - - - - - - - - - \ No newline at end of file + \ No newline at end of file diff --git a/svg/todoist.svg b/svg/todoist.svg index c4df5483..bd96a442 100644 --- a/svg/todoist.svg +++ b/svg/todoist.svg @@ -1,14 +1 @@ - - - - - - - - - - - - - - \ No newline at end of file + \ No newline at end of file diff --git a/svg/tooljet.svg b/svg/tooljet.svg index 75b6435f..dc02a78f 100644 --- a/svg/tooljet.svg +++ b/svg/tooljet.svg @@ -1 +1 @@ -logo