More icons + readme
3
README.md
Normal file
@@ -0,0 +1,3 @@
|
|||||||
|
# Schmökerei Icons
|
||||||
|
|
||||||
|
<img src="icons/bitwarden.png" alt="bitwarden" width="50"> <img src="icons/cadvisor.png" alt="cadvisor" width="50"> <img src="icons/calibreweb.png" alt="calibreweb" width="50"> <img src="icons/dev-schmoekerei.png" alt="dev-schmoekerei" width="50"> <img src="icons/discord.png" alt="discord" width="50"> <img src="icons/docker.png" alt="docker" width="50"> <img src="icons/dokuwiki.png" alt="dokuwiki" width="50"> <img src="icons/edu-calibre-web.png" alt="edu-calibre-web" width="50"> <img src="icons/github.png" alt="github" width="50"> <img src="icons/gotify.png" alt="gotify" width="50"> <img src="icons/grafana.png" alt="grafana" width="50"> <img src="icons/jdownloader.png" alt="jdownloader" width="50"> <img src="icons/joplin.png" alt="joplin" width="50"> <img src="icons/komga.png" alt="komga" width="50"> <img src="icons/lazylibrarian.png" alt="lazylibrarian" width="50"> <img src="icons/letsencrypt.png" alt="letsencrypt" width="50"> <img src="icons/main-calibre-web.png" alt="main-calibre-web" width="50"> <img src="icons/nginxproxymanager.png" alt="nginxproxymanager" width="50"> <img src="icons/pgadmin.png" alt="pgadmin" width="50"> <img src="icons/phpldapadmin.png" alt="phpldapadmin" width="50"> <img src="icons/pihole.png" alt="pihole" width="50"> <img src="icons/portainer.png" alt="portainer" width="50"> <img src="icons/prometheus.png" alt="prometheus" width="50"> <img src="icons/prowlarr.png" alt="prowlarr" width="50"> <img src="icons/qbittorrent.png" alt="qbittorrent" width="50"> <img src="icons/readarr.png" alt="readarr" width="50"> <img src="icons/schmoekerei-white-bg.png" alt="schmoekerei-white-bg" width="50"> <img src="icons/schmoekerei.png" alt="schmoekerei" width="50"> <img src="icons/sheetable.png" alt="sheetable" width="50"> <img src="icons/sm-calibre-web.png" alt="sm-calibre-web" width="50"> <img src="icons/uptime-kuma-dev.png" alt="uptime-kuma-dev" width="50"> <img src="icons/uptime-kuma.png" alt="uptime-kuma" width="50"> <img src="icons/vscode.png" alt="vscode" width="50"> <img src="icons/watchtower.png" alt="watchtower" width="50"> <img src="icons/wordpress.png" alt="wordpress" width="50">
|
||||||
BIN
icons/bitwarden.png
Normal file
|
After Width: | Height: | Size: 17 KiB |
BIN
icons/cadvisor.png
Normal file
|
After Width: | Height: | Size: 14 KiB |
BIN
icons/calibreweb.png
Normal file
|
After Width: | Height: | Size: 1.5 KiB |
BIN
icons/discord.png
Normal file
|
After Width: | Height: | Size: 7.1 KiB |
BIN
icons/docker.png
Normal file
|
After Width: | Height: | Size: 16 KiB |
BIN
icons/dokuwiki.png
Normal file
|
After Width: | Height: | Size: 16 KiB |
BIN
icons/github.png
Normal file
|
After Width: | Height: | Size: 3.1 KiB |
BIN
icons/gotify.png
Normal file
|
After Width: | Height: | Size: 19 KiB |
BIN
icons/grafana.png
Normal file
|
After Width: | Height: | Size: 30 KiB |
BIN
icons/jdownloader.png
Normal file
|
After Width: | Height: | Size: 51 KiB |
BIN
icons/joplin.png
Normal file
|
After Width: | Height: | Size: 22 KiB |
BIN
icons/komga.png
Normal file
|
After Width: | Height: | Size: 42 KiB |
BIN
icons/lazylibrarian.png
Normal file
|
After Width: | Height: | Size: 12 KiB |
BIN
icons/letsencrypt.png
Normal file
|
After Width: | Height: | Size: 17 KiB |
BIN
icons/nginxproxymanager.png
Normal file
|
After Width: | Height: | Size: 8.9 KiB |
BIN
icons/pgadmin.png
Normal file
|
After Width: | Height: | Size: 9.8 KiB |
BIN
icons/phpldapadmin.png
Normal file
|
After Width: | Height: | Size: 28 KiB |
BIN
icons/pihole.png
Normal file
|
After Width: | Height: | Size: 56 KiB |
BIN
icons/portainer.png
Normal file
|
After Width: | Height: | Size: 9.9 KiB |
BIN
icons/prometheus.png
Normal file
|
After Width: | Height: | Size: 40 KiB |
BIN
icons/prowlarr.png
Normal file
|
After Width: | Height: | Size: 43 KiB |
BIN
icons/qbittorrent.png
Normal file
|
After Width: | Height: | Size: 27 KiB |
BIN
icons/readarr.png
Normal file
|
After Width: | Height: | Size: 23 KiB |
BIN
icons/sheetable.png
Normal file
|
After Width: | Height: | Size: 32 KiB |
BIN
icons/uptime-kuma-dev.png
Normal file
|
After Width: | Height: | Size: 50 KiB |
BIN
icons/uptime-kuma.png
Normal file
|
After Width: | Height: | Size: 26 KiB |
BIN
icons/vscode.png
Normal file
|
After Width: | Height: | Size: 11 KiB |
BIN
icons/watchtower.png
Normal file
|
After Width: | Height: | Size: 105 KiB |
BIN
icons/wordpress.png
Normal file
|
After Width: | Height: | Size: 12 KiB |
14
scripts/generate_readme.py
Normal file
@@ -0,0 +1,14 @@
|
|||||||
|
from pathlib import Path
|
||||||
|
|
||||||
|
|
||||||
|
def generate_img_tag(file):
|
||||||
|
return f'<img src="icons/{file.name}" alt="{file.stem}" width="50">'
|
||||||
|
|
||||||
|
|
||||||
|
if __name__ == "__main__":
|
||||||
|
imgs = sorted(Path("./icons").glob("*.png"))
|
||||||
|
img_tags = [generate_img_tag(x) for x in imgs]
|
||||||
|
|
||||||
|
with open("README.md", "wt", encoding="UTF-8") as f:
|
||||||
|
f.write("# Schmökerei Icons\n\n")
|
||||||
|
f.write(" ".join(img_tags))
|
||||||