Self-host all icons and wallpaper, remove CDN dependency
Download 69 selfh.st icon files (34 PNG, 34 light SVG, unraid.svg) into assets/icons/ and add wallpaper to assets/. Update sidebar.js to serve icons from /custom/assets/icons/ instead of cdn.jsdelivr.net. Update style.css wallpaper path to /custom/assets/wallpaper.jpg. Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
1
.gitignore
vendored
Normal file
@@ -0,0 +1 @@
|
|||||||
|
test-results/
|
||||||
35
CLAUDE.md
@@ -11,13 +11,24 @@ Custom CSS + JS theme for Unraid 7.2.3 WebGUI. B&W mountain wallpaper with frost
|
|||||||
| File | Purpose | Deploy path (persistent) | Deploy path (live) |
|
| File | Purpose | Deploy path (persistent) | Deploy path (live) |
|
||||||
|------|---------|--------------------------|---------------------|
|
|------|---------|--------------------------|---------------------|
|
||||||
| `style.css` | Main CSS theme | `/boot/config/plugins/custom.css/style.css` | `/usr/local/emhttp/plugins/custom.css/style.css` |
|
| `style.css` | Main CSS theme | `/boot/config/plugins/custom.css/style.css` | `/usr/local/emhttp/plugins/custom.css/style.css` |
|
||||||
| `sidebar.js` | Sidebar toggle + search overlay | `/boot/config/plugins/custom.css/assets/sidebar.js` | `/usr/local/emhttp/plugins/custom.css/assets/sidebar.js` |
|
| `sidebar.js` | Sidebar toggle + search overlay + icon replacement | `/boot/config/plugins/custom.css/assets/sidebar.js` | `/usr/local/emhttp/plugins/custom.css/assets/sidebar.js` |
|
||||||
| `update-icons.sh` | Replace Docker/VM icons with selfh.st CDN icons | `/boot/config/plugins/custom.css/assets/update-icons.sh` | `/usr/local/emhttp/plugins/custom.css/assets/update-icons.sh` |
|
| `update-icons.sh` | Replace Docker/VM cached icons with selfh.st icons | `/boot/config/plugins/custom.css/assets/update-icons.sh` | `/usr/local/emhttp/plugins/custom.css/assets/update-icons.sh` |
|
||||||
| `vm-icons.conf` | VM name → icon name mapping | `/boot/config/plugins/custom.css/assets/vm-icons.conf` | — |
|
| `vm-icons.conf` | VM name → icon name mapping | `/boot/config/plugins/custom.css/assets/vm-icons.conf` | — |
|
||||||
|
| `assets/icons/` | Self-hosted selfh.st icons (34 PNG + 34 light SVG + unraid.svg) | `/boot/config/plugins/custom.css/assets/icons/` | `/usr/local/emhttp/custom/assets/icons/` |
|
||||||
|
| `assets/wallpaper.jpg` | Mountain wallpaper background | `/boot/config/plugins/custom.css/assets/wallpaper.jpg` | `/usr/local/emhttp/custom/assets/wallpaper.jpg` |
|
||||||
|
|
||||||
|
## Web-Accessible Paths
|
||||||
|
|
||||||
|
Unraid nginx serves `/usr/local/emhttp/` as document root. Key mapping:
|
||||||
|
- `/custom/` → `/usr/local/emhttp/custom/` (NOT `plugins/custom.css/`!)
|
||||||
|
- `/plugins/custom.css/` → `/usr/local/emhttp/plugins/custom.css/`
|
||||||
|
|
||||||
|
Static assets (icons, wallpaper) that need HTTP access go to `/usr/local/emhttp/custom/assets/`.
|
||||||
|
JS/CSS loaded via plugin pages go to `/usr/local/emhttp/plugins/custom.css/`.
|
||||||
|
|
||||||
## Deployment
|
## Deployment
|
||||||
|
|
||||||
Both files must be deployed to TWO paths — persistent (survives reboot) and live (active now):
|
Code files deploy to TWO paths — persistent (survives reboot) and live (active now):
|
||||||
```bash
|
```bash
|
||||||
scp -i ~/.ssh/id_ed25519_unraid -P 422 style.css root@192.168.10.20:/boot/config/plugins/custom.css/style.css
|
scp -i ~/.ssh/id_ed25519_unraid -P 422 style.css root@192.168.10.20:/boot/config/plugins/custom.css/style.css
|
||||||
scp -i ~/.ssh/id_ed25519_unraid -P 422 style.css root@192.168.10.20:/usr/local/emhttp/plugins/custom.css/style.css
|
scp -i ~/.ssh/id_ed25519_unraid -P 422 style.css root@192.168.10.20:/usr/local/emhttp/plugins/custom.css/style.css
|
||||||
@@ -28,6 +39,18 @@ scp -i ~/.ssh/id_ed25519_unraid -P 422 update-icons.sh root@192.168.10.20:/usr/l
|
|||||||
scp -i ~/.ssh/id_ed25519_unraid -P 422 vm-icons.conf root@192.168.10.20:/boot/config/plugins/custom.css/assets/vm-icons.conf
|
scp -i ~/.ssh/id_ed25519_unraid -P 422 vm-icons.conf root@192.168.10.20:/boot/config/plugins/custom.css/assets/vm-icons.conf
|
||||||
```
|
```
|
||||||
|
|
||||||
|
Static assets deploy to persistent + web-accessible paths:
|
||||||
|
```bash
|
||||||
|
# Icons
|
||||||
|
scp -i ~/.ssh/id_ed25519_unraid -P 422 -r assets/icons/ root@192.168.10.20:/boot/config/plugins/custom.css/assets/icons/
|
||||||
|
ssh -i ~/.ssh/id_ed25519_unraid root@192.168.10.20 -p 422 'mkdir -p /usr/local/emhttp/custom/assets && cp -r /boot/config/plugins/custom.css/assets/icons /usr/local/emhttp/custom/assets/'
|
||||||
|
# Wallpaper
|
||||||
|
scp -i ~/.ssh/id_ed25519_unraid -P 422 assets/wallpaper.jpg root@192.168.10.20:/boot/config/plugins/custom.css/assets/wallpaper.jpg
|
||||||
|
ssh -i ~/.ssh/id_ed25519_unraid root@192.168.10.20 -p 422 'cp /boot/config/plugins/custom.css/assets/wallpaper.jpg /usr/local/emhttp/custom/assets/'
|
||||||
|
```
|
||||||
|
|
||||||
|
Boot persistence is handled by `/boot/config/go` which copies icons/wallpaper to `/usr/local/emhttp/custom/assets/` on startup.
|
||||||
|
|
||||||
JS injection is handled by `CustomJS_Loader.page` on the server (persisted via `/boot/config/go`).
|
JS injection is handled by `CustomJS_Loader.page` on the server (persisted via `/boot/config/go`).
|
||||||
|
|
||||||
## Unraid Sidebar DOM Structure
|
## Unraid Sidebar DOM Structure
|
||||||
@@ -113,7 +136,7 @@ The `dynamix.gui.search` plugin uses hover-trigger in sidebar theme. We replace
|
|||||||
|
|
||||||
## Custom Docker/VM Icons
|
## Custom Docker/VM Icons
|
||||||
|
|
||||||
Icons are sourced from [selfh.st/icons](https://selfh.st/icons/) via jsDelivr CDN.
|
Icons are sourced from [selfh.st/icons](https://selfh.st/icons/) and self-hosted locally in `assets/icons/` (no CDN dependency).
|
||||||
|
|
||||||
### How it works
|
### How it works
|
||||||
`update-icons.sh` reads a `glass.icon` Docker label from each container, downloads the matching PNG from `https://cdn.jsdelivr.net/gh/selfhst/icons@main/png/{name}.png`, and replaces Unraid's cached icon files. This works on Docker page, VM page, and Dashboard — no client-side JS needed.
|
`update-icons.sh` reads a `glass.icon` Docker label from each container, downloads the matching PNG from `https://cdn.jsdelivr.net/gh/selfhst/icons@main/png/{name}.png`, and replaces Unraid's cached icon files. This works on Docker page, VM page, and Dashboard — no client-side JS needed.
|
||||||
@@ -144,4 +167,6 @@ ssh -i ~/.ssh/id_ed25519_unraid root@192.168.10.20 -p 422 'bash /boot/config/plu
|
|||||||
|
|
||||||
## Wallpaper
|
## Wallpaper
|
||||||
|
|
||||||
Place wallpaper at `/boot/config/plugins/custom.css/assets/wallpaper.jpg` — accessible at `/custom/wallpaper.jpg`.
|
Source: Unsplash NuBvAE6VfSM (B&W mountains). Tracked in repo as `assets/wallpaper.jpg`.
|
||||||
|
- Persistent: `/boot/config/plugins/custom.css/assets/wallpaper.jpg`
|
||||||
|
- Web-accessible: `/usr/local/emhttp/custom/assets/wallpaper.jpg` → `/custom/assets/wallpaper.jpg`
|
||||||
|
|||||||
1
assets/icons/actual-budget-light.svg
Normal file
@@ -0,0 +1 @@
|
|||||||
|
<svg xmlns="http://www.w3.org/2000/svg" xml:space="preserve" viewBox="0 0 512 512"><path d="M263 151.8 199.4 287l109.7-40.3zm-80.8 171.6-20.7 44 173.8-66.8-13.7-28.3zM378.5 0h-245C59.8 0 0 59.8 0 133.5v245C0 452.2 59.8 512 133.5 512h245c73.7 0 133.5-59.8 133.5-133.5v-245C512 59.8 452.2 0 378.5 0m27.7 388.6-19.5 9.5c-1.7.8-3.7.1-4.5-1.6l-34.3-70.4-229.8 88.3c-1.7.7-3.7-.2-4.3-1.9v-.1l-1.6-4.3c-.4-.8-.3-1.7 0-2.5l32.2-68.3-28.4 10.4c-1.7.6-3.7-.2-4.3-2l-7.4-20.3c-.6-1.7.2-3.7 2-4.3l55.2-20.3 95-201.6c.6-1.2 1.7-1.9 3-1.9h6.3c1.3 0 2.4.7 3 1.9L362 290.3l29.2-11.2c1.7-.7 3.7.2 4.3 1.9l7.8 20.2c.7 1.7-.2 3.7-1.9 4.3l-26.9 10.4 33.2 68.2c.8 1.7.1 3.7-1.5 4.5" style="fill:#fff"/></svg>
|
||||||
|
After Width: | Height: | Size: 687 B |
BIN
assets/icons/actual-budget.png
Normal file
|
After Width: | Height: | Size: 11 KiB |
1
assets/icons/adguard-home-light.svg
Normal file
@@ -0,0 +1 @@
|
|||||||
|
<svg xmlns="http://www.w3.org/2000/svg" xml:space="preserve" viewBox="0 0 512 512"><path d="M505.8 58.8C428.2 18.4 334.1 0 256 0S83.8 18.4 6.2 58.8C6.2 146 5.2 363.4 256 512 506.8 363.4 505.8 146 505.8 58.8M246.9 341.6 137.7 213.2c7.2-5.3 38-25.3 60.6.9l47.4 57.1 125.9-131h.2c5.3-4.8 15-11.1 26.1-2.2z" style="fill-rule:evenodd;clip-rule:evenodd;fill:#fff"/></svg>
|
||||||
|
After Width: | Height: | Size: 365 B |
BIN
assets/icons/adguard-home.png
Normal file
|
After Width: | Height: | Size: 12 KiB |
1
assets/icons/apple-light.svg
Normal file
@@ -0,0 +1 @@
|
|||||||
|
<svg xmlns="http://www.w3.org/2000/svg" xml:space="preserve" viewBox="0 0 512 512"><path d="M451.1 174.6c-3 2.3-55.4 31.8-55.4 97.5 0 76 66.7 102.9 68.7 103.5-.3 1.6-10.6 36.8-35.2 72.7-21.9 31.5-44.8 63-79.6 63s-43.8-20.2-84-20.2c-39.2 0-53.1 20.9-84.9 20.9s-54.1-29.2-79.6-65c-29.6-42.1-53.5-107.5-53.5-169.5 0-99.5 64.7-152.3 128.4-152.3 33.8 0 62.1 22.2 83.3 22.2 20.2 0 51.8-23.6 90.3-23.6 14.6 0 67 1.3 101.5 50.8m-119.8-93c15.9-18.9 27.2-45.1 27.2-71.3 0-3.6-.3-7.3-1-10.3-25.9 1-56.7 17.3-75.3 38.8-14.6 16.6-28.2 42.8-28.2 69.4 0 4 .7 8 1 9.3 1.6.3 4.3.7 7 .7 23.2-.1 52.4-15.6 69.3-36.6" style="fill:#fff"/></svg>
|
||||||
|
After Width: | Height: | Size: 623 B |
BIN
assets/icons/apple.png
Normal file
|
After Width: | Height: | Size: 7.9 KiB |
1
assets/icons/audible-light.svg
Normal file
@@ -0,0 +1 @@
|
|||||||
|
<svg xmlns="http://www.w3.org/2000/svg" xml:space="preserve" viewBox="0 0 512 512"><path d="M256.2 370.4 512 210.9v43.3L256.2 414.3 0 254.1v-43.3zm0-200.1c-57.8 0-108.5 29.1-137.5 74 2.4-2.4 3.7-3.7 6.1-5.4 72-59.8 175.7-46.3 232.2 29.1l37.5-24c-29.8-43.6-80.9-73.7-138.3-73.7m0 74c-31.4 0-59.1 15.9-75.7 38.9 13.5-9.8 29.1-14.9 45.6-14.9 27.7 0 52.4 14.2 68.9 38.2l35.8-22.3c-15.5-24.7-43.2-39.9-74.6-39.9M83.1 179.5c105.4-83.1 254.5-60.5 333.9 50l.7.7 38.9-24C414 140.9 340 97.7 256.2 97.7 173 97.7 99 140.3 55.8 206.2c7.7-8.8 17.5-19.3 27.3-26.7" style="fill:#fff"/></svg>
|
||||||
|
After Width: | Height: | Size: 575 B |
BIN
assets/icons/audible.png
Normal file
|
After Width: | Height: | Size: 19 KiB |
1
assets/icons/authentik-light.svg
Normal file
@@ -0,0 +1 @@
|
|||||||
|
<svg xmlns="http://www.w3.org/2000/svg" xml:space="preserve" viewBox="0 0 512 512"><path d="M511.8 131.1c-.4-3.6-1.1-7.2-2-10.8-.3-1.1-.7-2.3-1-3.4-.1-.2-.2-.5-.3-.8-.1-.6-.3-1.1-.5-1.7s-.4-1.2-.6-1.7c-.2-.6-.5-1.2-.7-1.8-.3-.6-.6-1.2-.8-1.8-2-4.8-4.4-9.3-7.3-13.6l-.1-.1c-.8-1.1-1.5-2.1-2.3-3.2-.7-.9-1.3-1.8-2-2.6-.8-.9-1.6-1.9-2.4-2.8-.7-.9-1.6-1.8-2.4-2.6-3.4-3.4-7.1-6.6-11-9.4-.9-.6-1.8-1.3-2.8-1.9-1.1-.7-2.2-1.3-3.3-2-2.1-1.2-4.3-2.4-6.5-3.4-.7-.4-1.4-.7-2.1-1-3.1-1.3-6.2-2.5-9.4-3.4-1.2-.4-2.4-.7-3.7-1-.6-.1-1.2-.3-1.8-.4-3.6-.8-7.2-1.3-10.9-1.6l-1.6-.1h-.8c-1.2-.1-2.5-.1-3.7-.1H200.5c-1.3 0-2.5 0-3.7.1h-.8l-1.6.1c-3.7.3-7.3.8-10.9 1.6-.6.1-1.2.2-1.8.4-1.2.3-2.5.6-3.7 1-3.2.9-6.3 2.1-9.4 3.4-.7.3-1.4.7-2.1 1-2.3 1-4.4 2.2-6.5 3.4-1.1.6-2.2 1.3-3.3 2-.9.6-1.9 1.2-2.8 1.9-3.4 2.4-6.6 5.1-9.6 8-.5.5-1 .9-1.4 1.4l-.1.1c-.8.8-1.6 1.7-2.4 2.6s-1.6 1.9-2.4 2.8c-.7.9-1.3 1.7-2 2.6-.8 1.1-1.6 2.1-2.3 3.2l-.1.1c-2.9 4.3-5.3 8.9-7.3 13.6-.3.6-.6 1.2-.8 1.8s-.5 1.2-.7 1.8-.4 1.2-.6 1.7c-.1.6-.3 1.1-.5 1.7-.1.2-.2.5-.3.8-.4 1.1-.7 2.3-1 3.4-.9 3.5-1.6 7.1-2 10.8-.3 3-.5 6.1-.5 9.2v94.4c-.8-1.1-1.5-2.2-2.3-3.2-12.6-17.1-31.4-34.3-52.3-34.3-24 0-45.9 13.2-57.3 34.2h-.1C-15.9 273 17 329 65.3 327.8c37.4 0 68.2-55.5 68.2-65.3 0-3.6-4.2-13.5-11.5-24.5h131.6v-78.2h26.3v32.4h17.9v-32.4h28.7v19h17.9v-19h34v139H120v72.8c0 44.3 36 80.4 80.4 80.4h34.1v-78.8h163V452h34.1c44.3 0 80.4-36.1 80.4-80.4V140.4c0-3.1-.2-6.1-.2-9.3M38.2 231.6c13.6-11.6 33.1-15 47.2 0h.1c10.7 9.7 19.9 23.6 23.2 30.8C66.8 350-6.5 275.5 38.2 231.6" style="fill:#fff"/></svg>
|
||||||
|
After Width: | Height: | Size: 1.5 KiB |
BIN
assets/icons/authentik.png
Normal file
|
After Width: | Height: | Size: 7.1 KiB |
1
assets/icons/databasement-light.svg
Normal file
@@ -0,0 +1 @@
|
|||||||
|
<svg xmlns="http://www.w3.org/2000/svg" xml:space="preserve" viewBox="0 0 512 512"><linearGradient id="databasement-light_svg__a" x1="256" x2="256" y1="506.703" y2="5.298" gradientUnits="userSpaceOnUse"><stop offset="0" style="stop-color:#fff"/><stop offset=".5" style="stop-color:#fff;stop-opacity:.75"/><stop offset="1" style="stop-color:#fff;stop-opacity:.5"/></linearGradient><path d="M503.2 146.5 256 5.3 8.8 146.5V196l30.9 17.6-30.9 17.7v49.4l30.9 17.7L8.8 316v49.5L256 506.7l247.2-141.2V316l-30.9-17.6 30.9-17.7v-49.4l-30.9-17.7 30.9-17.6z" style="fill:url(#databasement-light_svg__a)"/><path d="M508.5 196v-49.4c0-1.9-1-3.7-2.7-4.6L258.6.7c-1.6-.9-3.6-.9-5.3 0L6.2 141.9c-1.7.9-2.7 2.7-2.7 4.6V196c0 1.9 1 3.7 2.7 4.6l22.8 13-22.8 13.1c-1.7.9-2.7 2.7-2.7 4.6v49.4c0 1.9 1 3.7 2.7 4.6L29 298.4l-22.8 13c-1.7.9-2.7 2.7-2.7 4.6v49.4c0 1.9 1 3.7 2.7 4.6l247.2 141.2c.8.5 1.7.7 2.6.7s1.8-.2 2.6-.7L505.8 370c1.6-.9 2.7-2.7 2.7-4.6V316c0-1.9-1-3.7-2.7-4.6l-22.8-13 22.8-13.1c1.6-.9 2.7-2.7 2.7-4.6v-49.4c0-1.9-1-3.7-2.7-4.6L483 213.6l22.8-13.1c1.6-.9 2.7-2.6 2.7-4.5M256 11.4l236.5 135.1L256 281.7 19.5 146.5zm241.9 351L256 500.6 14.1 362.4v-37.2l239.2 136.7c.8.5 1.7.7 2.6.7s1.8-.2 2.6-.7l239.2-136.7v37.2zm-5.4-46.4L256 451.2 19.5 316l20.2-11.6 213.6 122.1c.8.5 1.7.7 2.6.7s1.8-.2 2.6-.7l213.6-122.1zm5.4-38.4L256 415.9 14.1 277.6v-37.2l239.2 136.7c.8.5 1.7.7 2.6.7s1.8-.2 2.6-.7l239.2-136.7v37.2zm-5.4-46.3L256 366.4 19.5 231.3l20.2-11.6 213.6 122.1c.8.5 1.7.7 2.6.7s1.8-.2 2.6-.7l213.6-122.1zm5.4-38.4L256 331.1 14.1 192.9v-37.2l239.2 136.7c.8.5 1.7.7 2.6.7s1.8-.2 2.6-.7l239.2-136.7v37.2z" style="fill:#fff"/></svg>
|
||||||
|
After Width: | Height: | Size: 1.6 KiB |
BIN
assets/icons/databasement.png
Normal file
|
After Width: | Height: | Size: 47 KiB |
1
assets/icons/docker-light.svg
Normal file
@@ -0,0 +1 @@
|
|||||||
|
<svg xmlns="http://www.w3.org/2000/svg" xml:space="preserve" viewBox="0 0 512 512"><path d="M501.4 212.3c-11.5-8-38-11-58.6-7-2.4-20-13.5-37.5-32.7-53l-11-8-7.7 11.5c-9.6 15-14.4 36-13 56 .5 7 2.9 19.5 10.1 30.5-6.7 4-20.7 9-38.9 9H2.3l-1 4c-3.4 20-3.4 82.5 36 130.5 29.8 36.5 74 55 132.1 55 125.9 0 219.1-60.5 262.8-170 17.3.5 54.3 0 73-37.5.5-1 1.4-3 4.8-10.5l1.9-4zM280 71.3h-52.8v50H280zm0 60h-52.8v50H280zm-62.5 0h-52.8v50h52.8zm-62.4 0h-52.8v50h52.8zm-62.5 60H39.8v50h52.8zm62.5 0h-52.8v50h52.8zm62.4 0h-52.8v50h52.8zm62.5 0h-52.8v50H280zm62.4 0h-52.8v50h52.8z" style="fill:#fff"/></svg>
|
||||||
|
After Width: | Height: | Size: 593 B |
BIN
assets/icons/docker.png
Normal file
|
After Width: | Height: | Size: 5.8 KiB |
1
assets/icons/dockge-light.svg
Normal file
@@ -0,0 +1 @@
|
|||||||
|
<svg xmlns="http://www.w3.org/2000/svg" xml:space="preserve" viewBox="0 0 640 640"><path d="M639.8 356c-2.8-63.3-31.5-113.6-48.4-138.1-35.6-51.5-49.7-66.6-78.5-96.1-26-26.7-77.7-65-137.8-85-92.6-30.9-183.2-13.2-254.9 49.9-39.8 35.1-71.8 78.4-92.4 125.6C7.4 258.7-2.1 308.7.4 356.9c2 40.5 12.1 78.6 30 113.3 19.1 37 46.1 68.1 80.2 92.5C161.7 599.2 224.8 618 295 618c10.4 0 21-.4 31.7-1.2 64.9-5.1 131.5-25.4 187.7-57.2 15.5-8.8 29.8-18.3 42.7-28.3 56.4-43.8 85.8-106.1 82.7-175.3m-139 103.1c-9.3 7.2-19.9 14.3-31.5 20.8-81.8 46.4-215.5 72.5-305.4 8.3C61.2 414.9 69 253.8 180.7 155.5S421 159 447.2 185.8c26.2 26.9 36.9 38.2 68.7 84.3 32 46.1 59.3 131-15.1 189m-188.4-24.4c37.6-2.9 79.3-15.7 111.6-34 7.8-4.3 14.6-8.9 20.4-13.4 11.8-9.2 12.5-15.4 12.2-22.5-.5-12.1-6.9-28.6-16.1-42-28.3-40.9-35.4-48.2-58.9-72.4-5.4-5.5-32-28.3-64.6-39.1-11-3.6-20.8-5.6-29.9-5.6-16.7 0-31 6.3-45.8 19.2-38.4 33.8-60 79.9-57.8 123.3 1 19.8 7.7 47.3 33.7 65.9 29.1 20.9 67.8 22.7 95.2 20.6" style="fill:#fff"/></svg>
|
||||||
|
After Width: | Height: | Size: 995 B |
BIN
assets/icons/dockge.png
Normal file
|
After Width: | Height: | Size: 26 KiB |
1
assets/icons/gitea-light.svg
Normal file
@@ -0,0 +1 @@
|
|||||||
|
<svg xmlns="http://www.w3.org/2000/svg" xml:space="preserve" viewBox="0 0 512 512"><path d="M502.6 103.7c-3.3-3.3-7.8-3.3-7.8-3.3s-95.5 5.4-144.9 6.5c-10.8.2-21.6.5-32.3.6V203c-4.5-2.1-9-4.3-13.5-6.4 0-29.6-.1-88.9-.1-88.9-23.6.3-72.7-1.8-72.7-1.8s-115.2-5.8-127.7-6.9c-8-.5-18.3-1.7-31.8 1.2-7.1 1.5-27.3 6-43.8 21.9C-8.7 154.8.7 206.7 1.9 214.5c1.4 9.5 5.6 36 25.8 59 37.3 45.7 117.6 44.6 117.6 44.6s9.9 23.5 24.9 45.2c20.4 27 41.3 48 61.7 50.5 51.3 0 153.9-.1 153.9-.1s9.8.1 23-8.4c11.4-6.9 21.6-19.1 21.6-19.1s10.5-11.2 25.2-36.9c4.5-7.9 8.2-15.6 11.5-22.8 0 0 45-95.4 45-188.2-1-28-7.9-33-9.5-34.6M97.7 269.9c-21.1-6.9-30.1-15.2-30.1-15.2S52 243.8 44.2 222.3c-13.4-36-1.1-58-1.1-58s6.8-18.3 31.4-24.4c11.2-3 25.2-2.5 25.2-2.5s5.8 48.4 12.8 76.7c5.9 23.8 20.2 63.3 20.2 63.3s-21.3-2.6-35-7.5m289.4-4.5c-5.2 12.6-44.8 92.1-44.8 92.1s-5 11.8-16 12.5c-4.7.3-8.4-1-8.4-1s-.2-.1-4.3-1.7l-92-44.8s-8.9-4.6-10.4-12.7c-1.8-6.6 2.2-14.7 2.2-14.7l44.2-91.1s3.9-7.9 9.9-10.6c.5-.2 1.9-.8 3.7-1.2 6.6-1.7 14.7 2.3 14.7 2.3l18.4 8.9c-3.7 7.6-7.5 15.2-11.2 22.9-5.5-.1-10.5 2.9-13.1 7.7-2.8 5.1-2.2 11.5 1.5 16.1-6.6 13.8-13.3 27.5-19.9 41.1-6.7.1-12.5 4.7-14.1 11.2-1.5 6.5 1.6 13.3 7.4 16.3 6.3 3.3 14.3 1.5 18.5-4.4 4.2-5.8 3.5-13.8-1.5-18.8l19.5-40c1.2.1 3 .2 5-.4 3.3-.7 5.8-2.9 5.8-2.9 3.4 1.5 7 3.1 10.8 5 3.9 2 7.6 4 10.9 5.9.7.4 1.5.9 2.3 1.5 1.3 1.1 2.8 2.5 3.8 4.5 1.5 4.5-1.5 12.1-1.5 12.1-1.9 6.2-15 33.1-15 33.1-6.6-.2-12.5 4.1-14.4 10.2-2.1 6.6.9 14.1 7.2 17.3 6.4 3.3 14.2 1.4 18.3-4.3 4.1-5.5 3.7-13.3-.9-18.4l4.6-9.2c4.1-8.5 11-24.8 11-24.8.7-1.4 4.6-8.4 2.2-17.3-2-9.3-10.3-13.6-10.3-13.6-9.9-6.4-23.8-12.4-23.8-12.4s0-3.3-.9-5.8-2.3-4.2-3.2-5.1c3.6-7.6 7.4-15.1 11-22.6l61.8 29.9s10.3 4.6 12.5 13.2c1.5 6-.4 11.4-1.5 14" style="fill:#fff"/></svg>
|
||||||
|
After Width: | Height: | Size: 1.7 KiB |
BIN
assets/icons/gitea.png
Normal file
|
After Width: | Height: | Size: 11 KiB |
1
assets/icons/homarr-light.svg
Normal file
@@ -0,0 +1 @@
|
|||||||
|
<svg xmlns="http://www.w3.org/2000/svg" xml:space="preserve" viewBox="0 0 512 512"><path d="M169.3 102.7c28.8 0 52.2 23.4 52.2 52.2v66.8c1.8-.6 3.6-1 5.5-1 5.9 0 11.1 2.9 14.2 7.4v-73.2c0-39.7-32.3-72-72-72-24.8 0-46.8 12.6-59.7 31.8 5.6 3.6 10.9 7.5 16 11.8 9.4-14.3 25.5-23.8 43.8-23.8m115.6 118.1c1.9 0 3.8.4 5.5 1V155c0-28.8 23.4-52.2 52.2-52.2 18.3 0 34.4 9.5 43.8 23.8 5.1-4.2 10.4-8.2 16-11.8C389.5 95.6 367.5 83 342.7 83c-39.7 0-72 32.3-72 72v73.2c3.1-4.5 8.3-7.4 14.2-7.4m-69.3 104.8c-35.7 8.6-66 28.1-88.1 54-12.2 14.3-21.9 30.6-28.6 48l46.6.3 265.5 1.2v-.1c-29.2-77.8-112.5-123.4-195.4-103.4m11.5-61.9c-9.7 0-17.5 7.8-17.5 17.5s7.8 17.5 17.5 17.5 17.5-7.8 17.5-17.5-7.8-17.5-17.5-17.5m57.8 35.1c9.7 0 17.5-7.8 17.5-17.5s-7.8-17.5-17.5-17.5-17.5 7.8-17.5 17.5 7.8 17.5 17.5 17.5m162.5-75.6 26.7-108.8c-22.6 2.8-43.5 11.1-61.5 23.4-6.3 4.3-12.3 9.2-17.8 14.4-26.4 25.4-42.9 61.1-42.9 100.6 0 30.7 9.9 59.1 26.7 82.1 9.2 12.7 20.6 23.7 33.4 32.6l9.3-37.8c47.9-14.3 84.1-55.7 90.7-106.5zM133.5 334.9c16.8-23 26.7-51.4 26.7-82.1 0-39.5-16.5-75.2-42.9-100.6-5.5-5.3-11.5-10.1-17.8-14.4-17.9-12.3-38.8-20.6-61.5-23.4l26.7 108.8H0c6.6 50.8 42.8 92.2 90.7 106.5l9.3 37.8c12.9-8.9 24.2-19.9 33.5-32.6" style="fill:#fff"/></svg>
|
||||||
|
After Width: | Height: | Size: 1.2 KiB |
BIN
assets/icons/homarr.png
Normal file
|
After Width: | Height: | Size: 11 KiB |
1
assets/icons/home-assistant-light.svg
Normal file
@@ -0,0 +1 @@
|
|||||||
|
<svg xmlns="http://www.w3.org/2000/svg" xml:space="preserve" viewBox="0 0 512 512"><path d="M489.4 226.7 278.6 16c-12.4-12.4-32.8-12.4-45.2 0L22.6 226.7C10.2 239.1 0 263.7 0 281.3v192c0 17.6 14.4 32 32 32h196.8l-86.7-86.7c-4.5 1.5-9.2 2.4-14.2 2.4-24.1 0-43.7-19.6-43.7-43.7s19.6-43.7 43.7-43.7 43.7 19.6 43.7 43.7c0 5-.9 9.7-2.4 14.2l67.5 67.5V211.8c-14.5-7.1-24.5-22-24.5-39.2 0-24.1 19.6-43.7 43.7-43.7s43.7 19.6 43.7 43.7c0 17.2-10 32.1-24.5 39.2v173.4l67.1-67.1c-1.3-4.2-2-8.6-2-13.2 0-24.1 19.6-43.7 43.7-43.7s43.7 19.6 43.7 43.7-19.6 43.7-43.7 43.7c-5.3 0-10.4-1-15.1-2.8l-93.7 93.7v65.9H480c17.6 0 32-14.4 32-32v-192c0-17.6-10.2-42.2-22.6-54.7" style="fill:#fff"/></svg>
|
||||||
|
After Width: | Height: | Size: 678 B |
BIN
assets/icons/home-assistant.png
Normal file
|
After Width: | Height: | Size: 9.0 KiB |
1
assets/icons/karakeep-light.svg
Normal file
@@ -0,0 +1 @@
|
|||||||
|
<svg xmlns="http://www.w3.org/2000/svg" xml:space="preserve" viewBox="0 0 512 512"><path d="M481.7 1.1H30.3C13.6 1.1 0 14.6 0 31.4v449.2c0 16.7 13.5 30.3 30.3 30.3h451.5c16.7 0 30.3-13.5 30.3-30.3V31.4c-.1-16.7-13.6-30.3-30.4-30.3M223.7 436c0 4.4-3.5 7.9-7.9 7.9H76.6c-4.4 0-7.9-3.5-7.9-7.9V74.4c0-4.4 3.5-7.9 7.9-7.9h137c4.4 0 7.9 3.5 7.9 7.9V212s-.8 59.2 2.2 105.7zm217.4 0c0 6.3-7 10-12.2 6.6l-63.5-41.5c-2.7-1.8-6.3-1.7-9 .2l-55.6 40.2c-2.3 1.7-5 1.8-7.4 1-2-1.4-3.4-3.8-3.4-6.5V155.2c7.5-1.4 15.9-2.3 25.6-2.3 47.5 0 125.4 26.9 125.4 102.6z" style="fill:#fff"/></svg>
|
||||||
|
After Width: | Height: | Size: 572 B |
BIN
assets/icons/karakeep.png
Normal file
|
After Width: | Height: | Size: 4.7 KiB |
1
assets/icons/n8n-light.svg
Normal file
@@ -0,0 +1 @@
|
|||||||
|
<svg xmlns="http://www.w3.org/2000/svg" xml:space="preserve" viewBox="0 0 512 512"><path d="M458.1 229.1c-25.1 0-46.2-17.2-52.2-40.4h-61.8c-13.2 0-24.4 9.5-26.6 22.5l-2.2 13.3c-2 12.2-8.2 23.4-17.5 31.6 9.3 8.2 15.5 19.3 17.5 31.6l2.2 13.3c2.2 13 13.4 22.5 26.6 22.5h7.9c6-23.2 27.1-40.4 52.2-40.4 29.8 0 53.9 24.1 53.9 53.9s-24.1 53.9-53.9 53.9c-25.1 0-46.2-17.2-52.2-40.4h-7.9c-26.3 0-48.8-19-53.2-45l-2.2-13.3c-2.2-13-13.4-22.5-26.6-22.5h-21.4c-6 23.2-27.1 40.4-52.2 40.4s-46.2-17.2-52.2-40.4H106c-6 23.2-27.1 40.4-52.2 40.4C24.1 309.9 0 285.8 0 256s24.1-53.9 53.9-53.9c25.1 0 46.2 17.2 52.2 40.4h30.3c6-23.2 27.1-40.4 52.2-40.4s46.2 17.2 52.2 40.4h21.4c13.2 0 24.4-9.5 26.6-22.5l2.2-13.3c4.3-26 26.8-45 53.2-45H406c6-23.2 27.1-40.4 52.2-40.4 29.8 0 53.9 24.1 53.9 53.9s-24.2 53.9-54 53.9m0-27c14.9 0 26.9-12.1 26.9-26.9s-12.1-26.9-26.9-26.9-26.9 12.1-26.9 26.9 12 26.9 26.9 26.9M53.9 282.9c14.9 0 26.9-12.1 26.9-26.9s-12.1-26.9-26.9-26.9-27 12-27 26.9 12.1 26.9 27 26.9M215.6 256c0 14.9-12.1 26.9-26.9 26.9s-26.9-12.1-26.9-26.9 12.1-26.9 26.9-26.9 26.9 12 26.9 26.9m215.6 80.8c0 14.9-12.1 26.9-26.9 26.9-14.9 0-26.9-12.1-26.9-26.9s12.1-26.9 26.9-26.9 26.9 12.1 26.9 26.9" style="fill-rule:evenodd;clip-rule:evenodd;fill:#fff"/></svg>
|
||||||
|
After Width: | Height: | Size: 1.2 KiB |
BIN
assets/icons/n8n.png
Normal file
|
After Width: | Height: | Size: 10 KiB |
1
assets/icons/netalertx-light.svg
Normal file
@@ -0,0 +1 @@
|
|||||||
|
<svg xmlns="http://www.w3.org/2000/svg" xml:space="preserve" viewBox="0 0 512 512"><path d="m254.9 329.5-33.1 33.1-33 33H321l-33-33zM437 75C388.7 26.6 324.4 0 256 0S123.4 26.7 75 75 0 187.6 0 256s26.7 132.6 75 181 112.6 75 181 75 132.6-26.7 181-75 75-112.6 75-181-26.7-132.6-75-181m-44.3 391.4c-.1-.1-3.4-3.1-7.1-6.8l-7.1-6.6H131l-5.9 6.3c-3.2 3.5-6.2 6.3-6.6 6.3q-.3 0-.9-.3c-14.6-9.7-28.1-20.8-40.3-33.2l88.2-88.5c48.8-49 88.6-89.7 88.8-89.7s41.1 40.8 90.4 89.9l89.4 89c-12.5 12.5-26.4 23.8-41.4 33.6M188.4 186.7c9.9-8.5 28-17.7 44-21.7 6-1.5 12.4-3.2 22.3-3.2 11.2 0 21.1 2.2 33.6 6.5 11.6 4 19.9 8.1 29.2 15l4.1 3-5.9 6c-3.2 3.3-18.3 18.2-33.6 33.1l-27.7 27.2c-10.8-11-30.7-30.7-32.9-32.9zm244.1-109-3.7 3.9c-4.2 4.4-17.7 17.7-29.9 29.9l-22.2 22-6.3-5.5c-39.2-33.1-95.6-47.1-150.7-37.3-31.3 5.5-56.8 18.3-84.8 41.9l-1.4 1.2-5.7-6.4c-2.6-2.9-15.5-15.9-28.4-29.2L79.3 77.9C124.7 32.9 187.2 5 256 5c68.7 0 131.1 27.8 176.5 72.7M198.8 500.4c18.4 4.2 37.5 6.5 57.2 6.5s38.8-2.2 57.2-6.5c-18.4 4.3-37.5 6.6-57.2 6.6s-38.8-2.3-57.2-6.6" style="fill:#fff"/></svg>
|
||||||
|
After Width: | Height: | Size: 1.0 KiB |
BIN
assets/icons/netalertx.png
Normal file
|
After Width: | Height: | Size: 13 KiB |
1
assets/icons/netbox-light.svg
Normal file
@@ -0,0 +1 @@
|
|||||||
|
<svg xmlns="http://www.w3.org/2000/svg" xml:space="preserve" viewBox="0 0 512 512"><path d="M471.8 319.8c-17.3 0-32 10.9-37.7 26.2H374V189.7c15.3-5.7 26.2-20.4 26.2-37.7 0-6-1.3-11.7-3.7-16.8L455 76.7c5.1 2.4 10.8 3.7 16.8 3.7 22.2 0 40.2-18 40.2-40.2S494 0 471.8 0s-40.2 18-40.2 40.2c0 6 1.3 11.7 3.7 16.8l-58.5 58.5c-5.1-2.4-10.8-3.7-16.8-3.7-17.3 0-32 10.9-37.7 26.2H166V77.9c15.3-5.7 26.2-20.4 26.2-37.7C192.2 18 174.2 0 152 0s-40.2 18-40.2 40.2c0 17.3 10.9 32 26.2 37.7V138H77.9c-5.7-15.3-20.4-26.2-37.7-26.2C18 111.8 0 129.8 0 152s18 40.2 40.2 40.2c17.3 0 32-10.9 37.7-26.2H138v156.3c-15.3 5.7-26.2 20.4-26.2 37.7 0 6 1.3 11.7 3.7 16.8L57 435.3c-5.1-2.4-10.8-3.7-16.8-3.7-22.2 0-40.2 18-40.2 40.2S18 512 40.2 512s40.2-18 40.2-40.2c0-6-1.3-11.7-3.7-16.8l58.5-58.5c5.1 2.4 10.8 3.7 16.8 3.7 17.3 0 32-10.9 37.7-26.2H346v60.1c-15.3 5.7-26.2 20.4-26.2 37.7 0 22.2 18 40.2 40.2 40.2s40.2-18 40.2-40.2c0-17.3-10.9-32-26.2-37.7V374h60.1c5.7 15.3 20.4 26.2 37.7 26.2 22.2 0 40.2-18 40.2-40.2s-18-40.2-40.2-40.2M189.7 346c-4.1-11-12.8-19.6-23.7-23.7V166h156.3c4.1 10.9 12.7 19.6 23.7 23.7V346z" style="fill:#fff"/></svg>
|
||||||
|
After Width: | Height: | Size: 1.1 KiB |
BIN
assets/icons/netbox.png
Normal file
|
After Width: | Height: | Size: 8.8 KiB |
1
assets/icons/networking-toolbox-light.svg
Normal file
@@ -0,0 +1 @@
|
|||||||
|
<svg xmlns="http://www.w3.org/2000/svg" xml:space="preserve" viewBox="0 0 512 512"><path d="M0 222.3h94C97 150.1 115.6 83 142.8 39 65.1 66.4 7.9 137.2 0 222.3m0 40.4c7.9 85 65.1 155.8 142.8 183.3-27.2-44-45.9-111-48.8-183.3zm134.5-40.4h161C293.2 167.8 281.1 117.7 264 81c-9.6-20.6-20-35.3-29.6-44.2-9.4-8.9-15.9-10.3-19.3-10.3s-9.9 1.4-19.3 10.3c-9.6 8.9-20 23.6-29.6 44.2-17.2 36.7-29.3 86.8-31.7 141.3m0 40.4c2.4 54.4 14.5 104.5 31.6 141.2 9.6 20.7 20 35.3 29.6 44.2 9.4 8.9 15.9 10.3 19.3 10.3s9.9-1.4 19.3-10.3c3.5-3.3 7.3-7.4 11-12.3-10.7-21.7-16.8-46.1-16.8-71.9 0-38.3 13.3-73.5 35.5-101.2zM287.3 38.9c25.9 41.9 44 104.5 48.3 172.7 17.1-6.2 35.7-9.5 55-9.5 12.9 0 25.5 1.5 37.5 4.4-13.2-77.9-68-141.7-140.8-167.6m103.2 446.6c67.1 0 121.5-54.4 121.5-121.5s-54.4-121.5-121.5-121.5S269 296.9 269 364s54.4 121.5 121.5 121.5M331 346.4c-5.6 5-14.1 4.6-19.1-1s-4.6-14.1 1-19.1c20.6-18.5 47.7-29.8 77.6-29.8s57.1 11.3 77.6 29.8c5.6 5 6 13.5 1 19.1s-13.5 6-19.1 1c-15.8-14.3-36.6-22.9-59.6-22.9-22.8 0-43.7 8.6-59.4 22.9m59.5 54.7c9.3 0 16.9 7.6 16.9 16.9s-7.6 16.9-16.9 16.9-16.9-7.6-16.9-16.9 7.6-16.9 16.9-16.9m0-23.6c-10.2 0-19.6 3.9-26.6 10.2-5.6 5-14.1 4.6-19.1-.9s-4.6-14.1.9-19.1c11.8-10.7 27.5-17.2 44.7-17.2s32.9 6.5 44.7 17.2c5.6 5 6 13.5.9 19.1s-13.5 6-19.1.9c-6.8-6.3-16.2-10.2-26.4-10.2" style="fill:#fff"/></svg>
|
||||||
|
After Width: | Height: | Size: 1.3 KiB |
BIN
assets/icons/networking-toolbox.png
Normal file
|
After Width: | Height: | Size: 28 KiB |
1
assets/icons/nextcloud-light.svg
Normal file
@@ -0,0 +1 @@
|
|||||||
|
<svg xmlns="http://www.w3.org/2000/svg" xml:space="preserve" id="nextcloud-light_svg__Layer_1" x="0" y="0" version="1.1" viewBox="0 0 512 512"><style>.nextcloud-light_svg__st0{fill-rule:evenodd;clip-rule:evenodd;fill:#fff}</style><circle cx="256" cy="255.9" r="54.5" class="nextcloud-light_svg__st0" transform="rotate(-13.286 255.94 255.868)"/><path d="M119 232.6c-13.2 0-23.4 10.4-23.4 23.4s10.3 23.3 23.4 23.3 23.3-10.2 23.3-23.3-10.2-23.4-23.3-23.4m274.1 0c-13.1 0-23.3 10.4-23.3 23.4s10.2 23.3 23.3 23.3 23.3-10.2 23.3-23.3-10.2-23.4-23.3-23.4" class="nextcloud-light_svg__st0"/><path d="M432 0H80C35.8 0 0 35.8 0 80v352c0 44.2 35.8 80 80 80h352c44.2 0 80-35.8 80-80V80c0-44.2-35.8-80-80-80m-38.9 313.6c-22.8 0-42.5-13.6-51.8-33-10.8 36.9-45 64.2-85.3 64.2s-74.5-27.2-85.3-64.2c-9.3 19.4-29 33-51.8 33-31.6 0-57.6-25.9-57.6-57.6s26-57.7 57.6-57.6c22.8 0 42.5 13.6 51.8 33 10.8-36.9 45-64.2 85.3-64.2s74.5 27.2 85.4 64.1c9.3-19.4 29-33 51.8-33 31.7 0 57.5 26.1 57.5 57.7s-26 57.6-57.6 57.6" class="nextcloud-light_svg__st0"/></svg>
|
||||||
|
After Width: | Height: | Size: 1.0 KiB |
BIN
assets/icons/nextcloud.png
Normal file
|
After Width: | Height: | Size: 17 KiB |
1
assets/icons/ntfy-light.svg
Normal file
@@ -0,0 +1 @@
|
|||||||
|
<svg xmlns="http://www.w3.org/2000/svg" xml:space="preserve" viewBox="0 0 512 512"><path d="M443.1 32.7h-365C40.9 32.7 9 62 9 99.2l.4 311.2-9.4 69 127.1-33.8H443c37.2 0 69.1-29.3 69.1-66.5V99.2c0-37.2-31.9-66.5-69-66.5m22 346.3c0 10-9 19.8-22.1 19.6H120.2l-64.6 19.5.7-3.8-.4-315.1c0-10.1 9.1-19.6 22.2-19.6H443c13.1 0 22.1 9.5 22.1 19.6zM110.5 139.7l124.6 67.9V254l-116.4 63.3-8.2 4.5v-50.1l76.6-40.6.5-.2-.5-.2-76.6-40.6zm158.2 152.4h132.4v46H268.7z" style="fill:#fff"/></svg>
|
||||||
|
After Width: | Height: | Size: 478 B |
BIN
assets/icons/ntfy.png
Normal file
|
After Width: | Height: | Size: 20 KiB |
1
assets/icons/ollama-light.svg
Normal file
@@ -0,0 +1 @@
|
|||||||
|
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" xml:space="preserve" id="ollama-light_svg__Layer_1" x="0" y="0" version="1.1" viewBox="0 0 512 512"><style>.ollama-light_svg__st1{fill:#fff}</style><defs><circle id="ollama-light_svg__SVGID_1_" cx="256" cy="256" r="256"/></defs><clipPath id="ollama-light_svg__SVGID_00000090284231174666155040000012760067889378599608_"><use xlink:href="#ollama-light_svg__SVGID_1_" style="overflow:visible"/></clipPath><g style="clip-path:url(#ollama-light_svg__SVGID_00000090284231174666155040000012760067889378599608_)"><path d="M395 446.1c-2.3-9.1-4.8-15.8-9.6-24.9l-2.9-5.6v-3.4c0-3.2.1-3.5 1.1-5.6.8-1.6 1.9-3 3.7-4.8 1.5-1.4 3.4-3.6 4.3-5 5.2-7.5 9.1-20.8 10.3-35.7 1.8-22.5-4.1-48.1-13.6-58.5-5.8-6.4-5.8-14.1 0-20.3 2.7-2.9 4.5-5.2 6.4-8.1 11-17.1 13.1-39.4 5.7-60.7-8.5-24.3-27.7-42.5-49.7-46.9-6.5-1.3-11.5-1.4-18.1-.3-4.2.7-7 .4-9.7-.9-3.5-1.6-5.2-3.6-7.2-8.3-.7-1.7-1.9-4-2.6-5.1-1.7-2.8-7.1-9.5-9.4-11.6-10.5-9.7-23.6-16.5-36.9-19.2-3.3-.7-4.8-.8-10.9-.8s-7.7.1-10.9.8c-9 1.8-18.1 5.6-26 10.8-7 4.6-11.3 8.4-15.8 14-3.7 4.7-5.1 6.9-6.9 11.1-2 4.6-3.7 6.7-7.2 8.3-2.8 1.3-5.5 1.6-9.9.8-4-.7-11.1-.8-14.9-.2-17 2.7-32.2 12.7-43.1 28.4-11.1 16-16 36.1-13.3 54.6 1.9 13 7.2 24.1 15.7 33.3 3 3.2 4.3 6.3 4.3 10.1 0 3.6-1.5 7.1-4.3 10.2-4.1 4.5-8.1 12.9-10.5 22.2-5.7 22.4-4.1 48.7 4 66.5 1.9 4 4.2 7.3 7.4 10.5 1.9 1.9 3 3.2 3.7 4.8 1 2.1 1.1 2.5 1.1 5.6v3.4l-2.9 5.6c-4.8 9.2-7.3 15.9-9.6 24.9-2 7.8-3 15.5-3.3 22.7C154.4 496.1 203.3 512 256 512s101.6-15.9 142.3-43.2c-.2-7.2-1.3-14.9-3.3-22.7M184.1 249.2c0 3.7-.1 4.2-1.1 6.8-1.5 3.7-2.9 6-5.6 8.6-4.6 4.6-9.8 5.8-16.8 3.9-5.5-1.5-10.4-6.9-11.5-12.8-.5-2.5.1-7.1 1.2-10 2.3-6.1 6.6-10.5 12.5-12.3 2.3-.8 6.5-.8 9.1-.1 4.6 1.2 8.7 4.6 10.9 9.1l1.4 2.9zm142.4 49.4c-1 4.4-2.1 7.2-4.2 11.6-8.3 16.3-26.6 27.8-48 30.3-5.8.6-30.7.6-36.5 0-26.6-3-47.2-19.5-52.3-41.8-.7-3.2-.8-4.4-.8-10.1s.1-6.8.9-10.2c3.8-17.1 16.3-31.8 34.4-40.7 5.2-2.6 12.7-5.1 18.3-6.3 3.5-.7 5.4-1 12.6-1.7 2.5-.3 12.6.1 16.5.6 29.5 3.7 53.6 23.3 59.2 48.1.8 3.4.9 4.5.9 10.2-.2 5.6-.3 6.8-1 10m34.8-38.4c-1.9 3.9-5.9 7.3-10 8.4-7 1.8-12.2.6-16.8-3.9-2.7-2.6-4.1-4.9-5.6-8.6-1.1-2.6-1.1-3.1-1.1-6.8v-4l1.4-2.9c2.2-4.4 6.2-7.8 10.7-9.1 2.4-.7 6.7-.7 9 0 7.6 2.2 12.7 8.6 13.9 17.3.6 3.8.2 6.2-1.5 9.6m-214-117.1c.4-.1 2.5-.6 4.6-1.2 5.9-1.6 12.1-2.4 18.4-2.4h5.3l2.3-3.4 2.3-3.4v-9.1c-.1-9.3-.7-16.9-2-23.9-.3-1.6-.7-3.6-.8-4.5-.2-.9-.8-3.5-1.3-5.6-3.1-12.1-8.4-22.9-13.1-26.7-1.5-1.2-1.7-1.2-3-.3-5.4 4-11 17.8-13.4 32.9-2.2 13.6-2.3 30-.3 44.7.3 2.8.4 3 1 2.9" class="ollama-light_svg__st1"/><path d="M303.9 270.3c-2.6-3.9-8.6-9.9-12.9-12.7-8-5.3-17.9-8.8-27.7-9.9-3.6-.4-11.3-.4-14.9 0-9.4 1-19.6 4.7-27.4 9.9-6.7 4.5-13.5 12.3-16.1 18.5-2.2 5.1-3.2 11.2-2.7 14.9 1.3 7.9 3.6 12.8 8.7 18.2 6.3 6.7 15 11 26 13.1 3.2.6 5.2.7 16.4.8 17.2.1 22-.3 29.4-2.7 3.9-1.3 10.2-4.5 13.3-6.7 6.5-4.8 11.4-11.8 12.9-18.4 1-4.4 1.2-6.5.8-9.3-.8-5.9-2.6-10.8-5.8-15.7m-33 10.8c-.8 1.8-3.6 4.5-6.2 6-2.5 1.4-2.7 2.2-1.7 6.8 1.2 5.6.4 8.5-2.9 10.1-1.3.6-1.9.7-5.1.6-3.5-.1-3.7-.1-4.9-1.1-1.4-1.1-2.7-3.5-2.8-4.9 0-.5.3-2.5.7-4.3.4-1.9.6-3.9.6-4.7-.1-1.2-.2-1.4-2.3-2.6-3.8-2.3-6.2-5.1-6.8-7.8-.5-2.6 1.2-6 3.7-7.4.9-.5 1.9-.6 3.7-.6 2.6 0 3.3.3 7.5 2.8l1 .6 1.6-1c2.9-1.8 4.4-2.4 6.8-2.4 1.6 0 2.6.2 3.5.6 3.8 1.9 5.2 5.8 3.6 9.3" class="ollama-light_svg__st1"/><path d="M256 0C114.6 0 0 114.6 0 256c0 77.8 34.7 147.4 89.4 194.4 1.9-11.1 5.7-23.8 10.2-33.5.6-1.4 1-2.7.9-2.7-.4-.3-3.7-5.4-5.1-7.8-4.1-7.5-7.9-18.8-9.7-29.5-1.5-8.9-1.7-11.5-1.7-24.4 0-12.8.2-15.4 1.8-24.9 2.1-12.1 6.5-24.6 11.6-33.3l.7-1.2-2.5-3.7c-7.7-11.6-12.2-24.3-14-39.3-.8-6.5-.5-19.6.5-26.1 2.6-16.5 8.7-31.7 18.1-45 4.9-7 12-14.7 18.3-19.6 1.8-1.5 3.5-2.8 3.6-2.9.2-.1 0-2-.4-4-1.8-9.3-3-22.7-3-33.1 0-8.9.9-20.5 2.3-28.9 3.6-22.2 12.2-40 23.2-48.4 3.6-2.8 8.8-5 13.1-5.7 2.4-.4 9 .1 11.3.8 16.9 5.2 29.6 25.9 35.1 57.1 1 5.3 1.9 12.1 1.9 14 0 .7.1 1.3.3 1.3s1.5-.7 2.9-1.5c14.8-8.8 31.3-13.4 47.3-13.4s32.5 4.7 47.3 13.4c1.4.8 2.7 1.5 2.9 1.5s.3-.6.3-1.3c0-1.8.9-8.4 1.9-14 6.1-34.8 21.6-56.8 40.7-58 8.4-.5 15.3 2.3 22.2 8.8 8.6 8.2 15.2 22.3 18.8 40.1 4.2 20.4 4.3 46.5.3 67.4-.4 2.1-.6 3.9-.4 4 .1.1 1.8 1.5 3.6 2.9 6.2 5 13.4 12.6 18.3 19.6 9.4 13.4 15.5 28.5 18.1 45 1 6.5 1.3 19.6.5 26.1-1.8 15-6.3 27.7-14 39.3l-2.5 3.7.7 1.2c1.5 2.4 5 9.9 6.3 13.5 3.2 8.5 5.1 17 6.7 29.4.6 4.8.6 26.3 0 31.4-2.3 18.2-6.7 31.9-13.9 42.9-1 1.5-1.9 2.8-2.1 2.9-.1.1.3 1.3.9 2.7 4.7 10.2 7.9 20.9 10.1 33.6 54.7-47 89.4-116.6 89.4-194.4C512 114.6 397.4 0 256 0" class="ollama-light_svg__st1"/><path d="M336.4 139.5h5.3c6.2 0 12.4.8 18.4 2.4 2.1.5 4.2 1.1 4.6 1.2.6.1.7-.1 1.1-2.8 2.9-21.5 1.3-44.1-4.1-60.5-2.7-8.2-6.3-14.7-9.6-17.1-1.3-1-1.6-1-3.1.2-4.7 3.8-10.1 14.6-13.1 26.6-2.9 11.2-4 21.2-4.1 34.1v9.1l2.3 3.4z" class="ollama-light_svg__st1"/></g></svg>
|
||||||
|
After Width: | Height: | Size: 4.7 KiB |
BIN
assets/icons/ollama.png
Normal file
|
After Width: | Height: | Size: 20 KiB |
1
assets/icons/open-webui-light.svg
Normal file
@@ -0,0 +1 @@
|
|||||||
|
<svg xmlns="http://www.w3.org/2000/svg" xml:space="preserve" viewBox="0 0 512 512"><path d="M256 0C114.6 0 0 114.6 0 256s114.6 256 256 256 256-114.6 256-256S397.4 0 256 0m-49.2 368.1C145 368.1 94.7 317.8 94.7 256S145 143.9 206.8 143.9 319 194.2 319 256s-50.3 112.1-112.2 112.1m194.6 1.6h-45.1V143.4h45.1zM206.8 188.9c37 0 67.1 30 67.1 67.1s-30 67.1-67.1 67.1-67.1-30-67.1-67.1 30.1-67.1 67.1-67.1" style="fill:#fff"/></svg>
|
||||||
|
After Width: | Height: | Size: 423 B |
BIN
assets/icons/open-webui.png
Normal file
|
After Width: | Height: | Size: 12 KiB |
1
assets/icons/pgadmin-light.svg
Normal file
@@ -0,0 +1 @@
|
|||||||
|
<svg xmlns="http://www.w3.org/2000/svg" xml:space="preserve" viewBox="0 0 512 512"><path d="M502.5 312.7c-2.6-7.9-10.7-10.4-23.9-7.7-33.3 6.8-46.7 3-51.7.2 28.3-43.3 51.5-95.6 64-144.3 6.2-23.8 18.5-81.8-.4-105.9C462.8 19.7 422.3.7 373.2.2c-32.3-.4-60 7.6-67.1 10.4C294.5 7.8 282 6 268.3 5.8c-25.1-.4-46.8 5.5-64.9 17.6-19.7-7.2-102.3-34.4-153.9 2.1C20.2 46.2 6.7 83.2 9.3 135.3c.8 17.4 10.7 71 26.4 122.3C56.4 325.4 79 363.8 103 371.8c2.9.9 6.2 1.6 9.9 1.6 8.9 0 19.8-4 31.1-17.8 17.3-20.8 33.5-38.4 40.4-45.7 8.5 4.4 17.8 7 27.3 7.6-1.6 1.9-2.9 3.7-4.2 5.2-7.1 8.9-8.3 10.5-30.9 15.2-6.9 1.4-25.2 5.2-25.5 18.6-.3 14.5 21.7 20.5 24.2 21.1 8.4 2.1 16.5 3.1 24.3 3.1 17.8 0 33.6-5.4 46.4-16-.3 46.6 1.8 91.9 7.5 106.1 4.4 10.9 16.5 41.3 54.1 41.3 5.4 0 11.3-.6 17.6-2 38.6-8.3 55.3-25.3 61.7-62.8 3.3-18.9 9-64.3 11.8-90.1 5.6 1.5 12.3 2.2 19.5 2.2 17.7 0 38-4 49.5-9.3 15.3-7.1 39.6-22.9 34.8-37.4M409.6 144c-.2 6.8-1.1 12.9-2.2 19.7-1.2 7.7-2.4 15.6-2.7 25.2-.3 9.4.9 19 2 28.4 2.1 18.5 4.3 36.1-3.1 53.8-.9-1.7-1.7-3.5-2.5-5.4-1.2-2.8-3.5-6.9-7-13.2-11.8-21.2-43.2-77.5-28.1-99.1 7.5-10.7 26.6-11.4 43.6-9.4m66.7-78c7.1 9.1 10.7 38.2-2.8 90.3-11.6 44.6-32.3 92.2-57.7 132.7-.2-.3-.4-.5-.6-.8v-.1c15.1-25.6 12.1-50.8 9.4-73-1.1-9.1-2.2-17.7-1.9-25.7.3-8.5 1.4-15.9 2.5-23 1.4-8.9 2.7-18.2 2.4-29.1.2-1.1.3-2.4.1-3.9-1-10.5-12.9-41.7-37-69.8-12.5-14.5-30.4-30.7-54.6-42.3 34.1-6.3 98.1-9 140.2 44.7M130.2 344.2c-11.4 13.8-19 11.2-21.5 10.4-17.4-5.7-37.7-43-55.8-102.3C37.2 200.7 28 148.9 27.3 134.4 25 88.9 36 57.1 59.9 40.1c38-26.9 100.1-11.9 127.4-3.2-43.3 44.3-41.9 119.5-41.8 122.7 0 .4.1.8.1 1.3 0 1.6.1 3.5.3 5.8.8 12.5 2.2 35.6-1.5 62-3.5 24.9 4.1 49.2 21 66.8 1.3 1.4 2.7 2.7 4.1 4-7.7 8.4-23 25.2-39.3 44.7m92.2-68-1.1 3c-2.7 7.2-5.2 13.9-6.9 20.3-13.3-.4-26.2-6.2-36.1-16.5-13-13.5-18.9-32.4-16.2-51.8 4-28.2 2.4-53.5 1.7-65.6-.1-1.3-.1-2.5-.2-3.6 7.4-6.2 36-20 54.6-15.4 8.7 2.1 13.8 8 16 18.4 12.3 56.9 1.7 80.6-6.9 99.6-1.8 3.9-3.4 7.7-4.9 11.6m23 62.8c-18.6 26.1-45.9 25.8-65.6 20.9-2.6-.6-5-1.6-7-2.6 1.8-.6 4.2-1.2 7.5-2.1 27.7-5.7 32-9.7 41.4-21.7 2.1-2.7 4.5-5.7 7.8-9.4 4.2-4.7 5.7-4.1 9.6-2.4 2.5 1 5.7 4.5 7 9.1.2.8.5 1.9.6 3.1 0 .6 0 1.2-.1 1.9-.1 1-.5 2.2-1.2 3.2m76.2 153.4c-5.1 1.1-9.7 1.6-13.9 1.6-21.9 0-31-14.2-37.3-30-4.3-10.7-7.5-62.5-5.6-130.9 0-1.2-.2-2.4-.6-3.5-.2-1.1-.5-2.3-.8-3.4-2.7-9.5-9.3-17.5-17.2-20.8-2.6-1.2-7.6-3.3-13.8-2.6 1.4-5.2 3.6-11.1 6-17.3l1.1-3.1q1.95-4.95 4.5-10.5c9.2-20.3 21.7-48.1 8.1-110.8-5.2-23.9-23.1-36-49.2-33.2-15.5 1.7-29.7 7.9-36.7 11.5l-1.8.9c2.3-23.8 10-64.9 36.1-91.2 17-17.2 39.7-25.7 67.4-25.2 54.6.9 89.7 28.8 109.5 52.1 16.1 18.9 25.4 38.3 29.6 49.7-27.6-2.5-45.9 3.3-55.8 17.4-21.6 30.9 10.1 87.7 27.1 118.2 2.8 4.9 5.3 9.6 6.1 11.4 5.2 12.4 11.8 20.7 16.7 26.8 1 1.1 1.9 2.3 2.8 3.5-8.8 2.9-22.7 10.1-21.5 37.2-1 14.7-9 80.4-13.1 104-5.2 30.2-16.3 41.4-47.7 48.2m138.6-158.8c-8.3 3.8-22.3 6.8-35.6 7.5-14 .8-21.8-1.1-24.3-2.5-.6-15.8 5.2-17.4 11.7-19.2.8-.2 1.6-.4 2.4-.7.5.4 1 .7 1.6 1.1 11.9 7.8 32.3 9.2 60.8 3.9-4.1 3.1-9.6 6.6-16.6 9.9M229.6 161.8c-.4 2.9-3.1 5.3-4.3 6.2-3 2.1-6.4 3.3-9.7 3.3-.6 0-1.2 0-1.8-.1-7.5-1-14.2-8.6-13.5-13.4.1-1 .6-2.5 2.3-3.7 2.7-2 7.7-2.8 13.5-1.9 7 .9 14.2 4.3 13.5 9.6m167.2-12.7c1.6 1.2 2.1 2.6 2.2 3.6.6 4.3-5.5 12.4-13.5 13.4-.7.1-1.3.1-1.9.1-3.3 0-6.7-1.2-9.5-3.3-1.2-.9-3.9-3.3-4.3-6.2-.7-5.2 6.5-8.7 13.5-9.6 4.5-.6 10.3-.4 13.5 2" style="fill:#fff"/></svg>
|
||||||
|
After Width: | Height: | Size: 3.3 KiB |
BIN
assets/icons/pgadmin.png
Normal file
|
After Width: | Height: | Size: 19 KiB |
1
assets/icons/plex-light.svg
Normal file
@@ -0,0 +1 @@
|
|||||||
|
<svg xmlns="http://www.w3.org/2000/svg" xml:space="preserve" viewBox="0 0 512 512"><path d="M435.2 0H76.8C34.4 0 0 34.4 0 76.8v358.4C0 477.6 34.4 512 76.8 512h358.4c42.4 0 76.8-34.4 76.8-76.8V76.8C512 34.4 477.6 0 435.2 0M256 442H148l108-186L148 70h108l108 186z" style="fill:#fff"/></svg>
|
||||||
|
After Width: | Height: | Size: 288 B |
BIN
assets/icons/plex.png
Normal file
|
After Width: | Height: | Size: 8.4 KiB |
1
assets/icons/postgresql-light.svg
Normal file
@@ -0,0 +1 @@
|
|||||||
|
<svg xmlns="http://www.w3.org/2000/svg" xml:space="preserve" viewBox="0 0 512 512"><path d="M150.2 230.2c3.6-25.6 2.2-48 1.5-60.1-.2-3-.3-5.2-.3-6.8-.1-3-1.5-75 39.9-116.9.7-.7 1.5-1.4 2.2-2.1-24.3-8.1-89-25.5-128.1 2.3-23.7 16.8-34.6 48-32.4 92.7.7 14.1 9.6 64.2 24.8 114 17.6 57.7 37.7 94.2 55.1 100 2.8.9 11.2 3.7 23.2-10.7 16.8-20.3 32.7-37.5 39.5-44.7-2-1.7-3.9-3.4-5.7-5.3-15.8-16.5-23-39.2-19.7-62.4m233-157.7c22.9 26.7 34.2 56.1 35.1 65.9.1 1.3.1 2.4-.1 3.3.4 10.4-.8 18.9-2.2 27.9-1.1 6.9-2.2 14-2.4 22.4-.3 7.9.7 16.2 1.8 25.1 2.6 21.5 5.5 45.8-9.6 70.2.3.4.7.8 1 1.3.9 1.1 1.8 2.2 2.6 3.3 58.1-90.8 78-196.8 59.8-220.1-23.7-30.2-57.1-46-99.3-46.9-18.1-.4-34 2.1-45 4.6 26.2 10.9 45.4 27.9 58.3 43m27.5 243q-1.35-.9-2.4-1.8c-1.3.5-2.5.9-3.4 1.1-6.7 1.9-13.6 3.8-13 20.9.1.4.1.8.2 1.2 1.5 1.5 8.9 4.1 23.9 3.5 13.7-.5 28.1-3.5 36.8-7.6 11-5.2 19-11.4 22.8-15.5-.9.1-1.9.3-3.1.5-29.4 6.2-50.2 5.4-61.8-2.3m92.4-7.5c-2-6.1-9.4-19.6-34.9-14.4-14.6 3-24.6 3.7-31.2 3.5 24.2-40 44-86.1 55.2-129.5 7.8-30.3 17.9-85.1-2.4-111C461.1 20.1 419.4.6 369 0c-27.5-.3-51.7 5.2-63.7 9-12-2.1-24.6-3.3-37.4-3.5-24.6-.4-46.2 5.1-64.6 16.2-27-9.3-102.5-30.3-152.2 4.8-31.2 22.2-45.7 60.7-43 114.6.9 17.3 10.5 70 25.8 120.1 8.8 28.7 18.1 52.6 27.8 70.9 13.5 25.5 27.7 40.5 43.6 45.8 9.1 3 25.9 5.1 43.4-10.8 5.8 8.5 16.6 13.9 27 16.5 23.5 5.8 44.9 4 62.8-5 .2 4.8.3 9.5.4 13.1.1 4 .2 8 .4 11.8 1.1 26.9 2.9 46.4 8 60.2.3.8.7 2.1 1.2 3.4 2.6 7.8 6.9 21 17.6 31.1 9.6 9.1 21.9 13.7 36.4 13.7 5.6 0 11.5-.7 17.8-2 19.7-4.2 40.2-10.2 55.5-31.9 14.7-20.9 21.8-52.6 23.1-102.8.2-1.4.3-2.7.5-4 .2-1.8.4-3.7.6-5.5l6.3.5h.6c19.2.9 42.7-3.2 57.2-9.9 8-3.5 47.2-23.1 39-48.3m-44.9 36.4c-11.6 5.4-30.2 8.8-46.2 8.8-8.1 0-15.5-.9-21.1-2.8-2.6 24.1-8.4 70.4-11.6 89.2-6 35-21.6 50.8-57.6 58.6-6.1 1.3-11.7 1.9-16.7 1.9-34.4 0-45.2-27.2-49.7-38.3-5.5-13.7-7.4-60.9-6.9-106.6-12.6 12.1-28.8 18.4-47.2 18.4-7.3 0-14.9-1-22.8-2.9-8.1-2-21.8-8.1-21.6-18s13.1-13.7 22.7-15.7c22.5-4.7 24.2-6.8 31.1-15.5 1.5-1.9 3.2-4 5.3-6.5-.1-.6-.1-1.3-.1-1.9-10.4-.1-20.5-2.9-29.7-7.9-5.7 6-22.4 24-40.3 45.6-10.3 12.4-20.2 16.1-28.2 16.1-3.3 0-6.2-.6-8.8-1.4-22.3-7.4-43.6-43.9-63.3-108.4C30.5 207.9 21 156.7 20.2 140 17.8 90.5 30.5 55.6 58 36.2c49.8-35.2 130.6-7.6 147-1.3 17.2-11.8 38-17.6 62.1-17.2 13.2.2 25.3 1.9 36.4 4.7 3.3-1.5 30.3-10.6 64.6-10.3 46.5.5 84.9 18.4 111.1 51.8 12.3 15.8 12.3 52.2 0 99.9-12.2 47.4-35 98.3-62.6 140.2 3.9 3.2 16.4 9.1 53.5 1.5 11.4-2.4 18.2-.4 20.3 5.8 4.1 12.4-19.2 27.1-32.2 33.1m-270-21.7c.5-.5 1-1.1 1.4-1.6.6.2 1.1.4 1.7.7-1 .3-2 .6-3.1.9m208.7-26.2c-4.6-5.7-10.9-13.6-15.7-25.3-.8-1.9-3.2-6.2-6-11.2-15-26.9-46.2-82.8-26.2-111.3 9.3-13.3 27.8-18.4 55.2-15.4-3.3-10.3-12.3-31-29.5-51.4-19.4-23-53.9-50.7-107.6-51.6-27.3-.5-49.7 8-66.6 25-27.3 27.5-34.1 71.3-35.8 93.6 1.6-.9 3.3-1.9 5.3-2.9 6.6-3.4 19.9-9.2 34.5-10.8 24.2-2.6 40.1 8.1 44.8 30.1 12.9 59.6 1.1 86-7.6 105.2-1.6 3.6-3.1 7-4.4 10.3l-1.1 2.9c-2.8 7.5-5.4 14.4-6.7 20.4 6.9-2.4 12.7.1 15.7 1.4 7 2.9 12.9 10 15.3 18.5.4 1.3.6 2.6.8 3.8.3.7.4 1.5.4 2.3-1.7 60.2.7 114.7 5.6 126.9 7.6 19.1 19.1 35.7 51.9 28.7 31-6.7 42.6-18.4 47.7-48.3 3.8-22.4 11.3-84 12.6-99.6v-.2c-1.6-28.5 14.4-33 22.1-35.2-1.3-1.6-2.9-3.6-4.7-5.9m-156.8 20.8c-4-1.8-6.7-2.9-11.9 3-3.2 3.6-5.5 6.5-7.6 9.1-8.9 11.2-12.6 14.7-38.5 20.1-6.9 1.4-10.2 2.9-11.7 3.8 1.9 1.6 6.2 3.9 11.1 5.1 19.6 4.9 46.9 5.2 65.6-21 2.4-3.4 1.7-7.6 1.1-9.8-1.4-4.7-4.7-8.9-8.1-10.3m-15.9-38 1.1-2.9c1.4-3.7 3-7.3 4.7-11 8.4-18.6 18.8-41.7 6.8-97.3-2.4-11.2-8.3-17.6-17.9-19.7-20.5-4.4-49.2 11.2-54.7 16.3.1 1.2.1 2.8.3 4.6.7 11.6 2.2 35.8-1.6 62.6-2.7 19.4 3.2 38.2 16.2 51.8 10.4 10.8 24.2 16.7 38.2 16.6 1.5-6.6 4.1-13.5 6.9-21M215 173.6c-7-.9-12.7-8.1-12.2-11.9.1-.8.5-1.9 1.8-2.9 2.4-1.8 7.1-2.4 12.2-1.6 6.5.9 12.7 4 12.2 8.2-.2 1.7-1.6 3.7-3.8 5.3-2.6 2-5.6 3-8.6 3-.6 0-1.1-.1-1.6-.1m188.4-6c1.1-7.1 2.1-13.8 2.2-21.3-24-3.1-39.5.2-46.2 9.7-15.4 22 14.3 75.1 26.9 97.8 3.2 5.8 5.5 9.9 6.6 12.5 1.5 3.5 3.1 6.6 4.8 9.4 9.7-19.1 7.4-38.5 5.1-57.2-1.1-8.9-2.2-18.1-1.9-27 .2-9.1 1.4-16.6 2.5-23.9m-23.7 0c-.5.1-1 .1-1.5.1-2.8 0-5.6-1-8-2.8-1.9-1.5-3.2-3.2-3.4-4.6-.5-3.5 5.5-6.2 11.3-7 4.9-.7 9.4-.1 11.5 1.6 1 .7 1.3 1.6 1.3 2.1.5 2.9-4.5 9.7-11.2 10.6" style="fill:#fff"/></svg>
|
||||||
|
After Width: | Height: | Size: 4.1 KiB |
BIN
assets/icons/postgresql.png
Normal file
|
After Width: | Height: | Size: 28 KiB |
1
assets/icons/redis-light.svg
Normal file
@@ -0,0 +1 @@
|
|||||||
|
<svg xmlns="http://www.w3.org/2000/svg" xml:space="preserve" id="redis-light_svg__Layer_1" x="0" y="0" version="1.1" viewBox="0 0 512 512"><style>.redis-light_svg__st0{opacity:.8;fill:#fff}</style><path d="M512.1 305.1v51c-.1 5.2-6.3 10.8-20.2 18-27.3 14.2-168.9 72.4-199 88.1s-46.9 15.6-70.7 4.2-174.4-72.2-201.6-85.2C7.1 374.8 0 369.3 0 364.1v-50.8c.7 5 7.6 10.3 20.6 16.5 27.2 13 177.8 73.8 201.6 85.2s40.6 11.5 70.7-4.2 171.7-73.9 199-88.1c13.6-7.1 20.2-12.7 20.1-17.6zm-.1-83.7c.1 5-6.5 10.5-20.1 17.5-27.3 14.2-168.9 72.4-199 88.2-30.1 15.7-46.9 15.6-70.7 4.2-23.7-11.4-174.4-72.3-201.5-85.2C6.8 239.4-.1 233.9 0 228.6v51.8c0 5.2 7.1 10.6 20.6 17.2 27.2 13 177.8 73.8 201.6 85.2s40.6 11.5 70.7-4.2c30.1-15.8 171.7-74 199-88.2 13.9-7.3 20.1-12.9 20.2-18zc.1 0 0 0 0 0m0-86.8c0 5-6.5 10.5-20.1 17.5-27.3 14.2-168.9 72.4-199 88.1s-46.9 15.6-70.7 4.2-174.4-72.2-201.6-85.2C7.7 153 .8 147.7 0 142.8v50.8c0 5.1 7.1 10.6 20.6 17.2 27.2 13 177.8 73.8 201.6 85.2s40.6 11.5 70.7-4.2c30.1-15.8 171.7-74 199-88.2 13.9-7.3 20.1-12.9 20.2-18v-51z" class="redis-light_svg__st0"/><path d="M491.9 322.7c-27.3 14.2-168.9 72.4-199 88.1s-46.9 15.6-70.7 4.2-174.4-72.2-201.6-85.2c-27.1-13-27.7-21.9-1-32.3.1-.1.3-.1.4-.2l.6.3c27.2 13 177.8 73.8 201.6 85.2s40.6 11.5 70.7-4.2c30-15.7 170.5-73.5 198.6-88h.1c26.6 9.8 27.7 17.8.3 32.1M19.5 126.9C46.2 116.5 196 57.7 227.6 46.3c31.7-11.4 42.6-11.8 69.6-1.9 26.9 9.9 167.6 65.9 194.3 75.6 26.7 9.8 27.8 17.9.4 32.1-27.3 14.2-168.9 72.4-199 88.1s-46.9 15.6-70.7 4.2-174.4-72.2-201.6-85.2c-27.1-13-27.7-21.9-1.1-32.3m278.1 37.7-117.7 18.1 82.2 34.1zm73-56.4-77.1 30.5 69.6 27.5 7.6-3 69.6-27.5zM235.8 85.3 197.9 99l50.9 4.6 15.9 26.5 9.9-23.7 44-4.6-34.1-12.9 9-21.7-33.5 11-35.6-13.9zm-150.5 54c0 13.5 28.2 24.4 62.9 24.4s62.9-10.9 62.9-24.4-28.1-24.4-62.9-24.4-63 11-62.9 24.4m406.4 67.6c-1-.4-2.3-.8-3.7-1.4-34.7 16.9-166.2 71.1-195.1 86.3-30.1 15.7-46.9 15.6-70.7 4.2-23-11-164.6-68.2-198.5-83.8-1.5.6-2.9 1.1-4 1.6-26.7 10.4-26.1 19.3 1 32.3 27.1 12.9 177.8 73.8 201.5 85.2 23.8 11.4 40.6 11.5 70.7-4.2 30.1-15.8 171.7-74 199-88.2 27.4-14.2 26.3-22.2-.2-32" style="fill:#fff"/><path d="m370.6 108.2 69.7 27.5-69.6 27.5z" class="redis-light_svg__st0"/><path d="m293.5 138.7 77.1-30.5.1 55-7.6 3z" style="opacity:.5;fill:#fff"/></svg>
|
||||||
|
After Width: | Height: | Size: 2.2 KiB |
BIN
assets/icons/redis.png
Normal file
|
After Width: | Height: | Size: 17 KiB |
1
assets/icons/rustdesk-light.svg
Normal file
@@ -0,0 +1 @@
|
|||||||
|
<svg xmlns="http://www.w3.org/2000/svg" xml:space="preserve" viewBox="0 0 512 512"><path d="m439.6 119.5-42 41.8c-7.4 6.6-11 17.3-6.8 26.3 28 58.6 17.4 128.5-28.6 174.4s-115.9 56.5-174.6 28.5c-8.6-3.9-18.8-.6-25.4 6.1l-42.7 42.7c-9 8.8-9.1 23.2-.3 32.1 1.3 1.3 2.8 2.5 4.4 3.5 100.7 60.9 229.9 45.4 313.3-37.7 83.3-83 99.2-212.1 38.5-312.9-6.2-10.9-20.1-14.7-31-8.5-1.8 1.1-3.4 2.3-4.8 3.7M76 74.1C-7.8 156.8-24.2 285.9 36.2 386.9c6.2 10.9 20.1 14.7 31 8.5 1.7-1 3.3-2.2 4.7-3.5l41.8-41.6c7.6-6.6 11.3-17.4 7.1-26.5-28-58.6-17.4-128.5 28.6-174.4S265.3 92.9 324 120.8c8.5 3.8 18.6.7 25.2-5.9l43-42.9c9-8.7 9.1-23.1.4-32.1q-1.95-2.1-4.5-3.6C287.2-24 158.1-8 75.1 75.3z" style="fill:#fff"/></svg>
|
||||||
|
After Width: | Height: | Size: 693 B |
BIN
assets/icons/rustdesk.png
Normal file
|
After Width: | Height: | Size: 20 KiB |
1
assets/icons/speedtest-tracker-light.svg
Normal file
@@ -0,0 +1 @@
|
|||||||
|
<svg xmlns="http://www.w3.org/2000/svg" xml:space="preserve" viewBox="0 0 512 512"><path d="M504.5 419.2c-4.6-8.6-11.7-15.9-18.3-23.3-3-3.4-3.8-5.6-2-10 10.9-26.2 14.1-53.5 9.7-81.6-3.4-21.7-11.5-41.6-23.5-59.9-18.3-27.8-43.2-47.6-74.5-59.1-6.9-2.5-14-4.4-20-6.3 4.3-4.7 8.9-9.6 13.4-14.6 13.9-15.2 16-34.8 4.8-50.4-4-5.7-9.3-10.5-14.1-15.6-11.8-12.3-26.4-18.1-43.3-18.2h-22.6c5.7-13.5 6.1-26.7 5.7-40-.5-18-10.8-32.4-26.7-38-9.1-3.2-18.6-2-27.9-2-17.9.1-32.3 7.2-44.9 20.1-29.7 30.5-60 60.3-90.2 90.3-1.5 1.5-3.7 2.7-5.7 3-15.8 2.2-31.3 5.9-45.2 13.8-26 14.6-51.7 30.2-77.5 45.4-.8.5-1.5 1.9-1.5 2.8.2 12.8-.6 25.8 1.2 38.4 5.1 35.4 24.3 61.3 55.5 78.4 15.8 8.6 32.9 12 50.8 11.5 2.8-.1 4.2.7 5 3.6 1.6 5.6 3.7 11 5.6 16.4 6 17 12.4 33.7 24.7 47.4.8.9 1 2.7 1 4 .1 14.3-.2 28.6.1 42.9.1 4.5-1.5 7-5.1 9.6-15.4 10.8-24.7 25.8-26.4 44.6-1.1 12.2-.6 24.6-.8 36.9 0 .9.2 1.7.3 2.7h2.6c83.7 0 167.5 0 251.2-.1 4.2 0 8.5-.5 12.6-1.1 10.9-1.7 20.5-6.4 29.2-12.9 22.7 17.8 53.1 17.7 74.8 3.6 27.4-17.7 37.5-53.7 22-82.3M36.7 223.9c.8-.4 1.6-.9 2.5-1.1 6.9-1.4 12.5-5 17-10.2 5.1-5.8 7.9-12.5 7.6-20.8H37.6c-1.4 0-2.7-.5-4-.8 15.8-9.5 31.8-18.8 47.5-28.5 17.8-11 37.1-16.8 57.9-18.4 2-.2 4.3-1.3 5.7-2.7 33.2-33.1 66.4-66.2 99.4-99.5 5.6-5.6 11.6-9.6 19.6-9.7 5.9-.1 11.9 0 17.8.4 3.7.2 5.9 2.9 5.9 6.4 0 8.2.1 16.4-1.2 24.4-.6 3.8-3.7 7.6-6.5 10.6-11.3 11.7-22.9 23.2-34.4 34.7-.9.9-1.7 1.8-3.1 3.4h4.6c29.1 0 58.3.3 87.4-.1 10-.2 17.7 3 24.4 10 1.8 1.9 3.7 3.8 5.6 5.7 6.4 8.2 6.5 11.4-1.1 18.4-4.9 4.5-10.6 8.3-16.4 11.6-3 1.7-7.1 2.3-10.6 2.3H200c7.5 15.1 15.1 30.1 22.5 45.3 1.1 2.3 2.7 2.4 4.7 2.4 37.6 0 75.3.1 112.9 0 37.7-.1 69.4 13.5 94.3 41.9 15.1 17.2 24.7 37.4 27.9 60.2 4.4 31-2.1 59.6-19.6 85.6-.2.3-.3.7-.7 1.6 8.7 8.6 17.6 17.3 26.3 26.2 3.2 3.3 6.1 7 8.2 11.1 10.2 19.8-5 44.6-27.2 45.4-10.3.4-18.1-4.1-25.3-10.4-7.9-6.8-15.7-13.8-23.2-20.4-1.8 5-2.9 10.3-5.5 14.8-5.6 9.8-14.3 15.7-25.8 15.7-47.8.2-95.7.1-143.5.1-.6 0-1.3-.1-1.9-.1-.7-14.3 11.7-29 26.1-31 3.1-.4 6.3-.7 9.5-.7 22-.1 44 0 66.1 0-6-2.2-12.2-3.7-17.6-6.5-23.9-12.3-36-32.2-36.1-59.1-.1-9.9 0-19.8 0-30.4h-20.5c-3.8 0-8.6-1.1-11.2.7s-3.2 6.6-4.6 10.2c-14.1 37.8-28.3 75.6-42.3 113.5-1 2.7-2.3 3.5-5.1 3.5-14.6-.1-29.1-.1-43.7-.1-2.6-14.6 11-28.6 31.2-32 .1-1.1.2-2.2.2-3.3 0-27.7 0-55.4.1-83.1 0-2.6-.8-4.2-2.7-5.7-9-7-15-16.1-18.8-26.9-6.4-18-13.2-35.8-19.8-53.7-.4-1-.7-1.9-1.2-3-10.9 0-21.8.2-32.7 0-28.3-.6-55.8-21.2-64.3-47.9m75.3-40c0-2.8-.2-5.6 0-8.3.9-9.2 7.4-15.5 15.9-15.6 8.1-.1 15 5.8 15.9 14.6.7 6.6.5 13.5-.2 20.1-.9 7.9-7.9 13.2-15.8 13.1-7.8-.1-14.2-5.6-15.4-13.3-.5-3.5-.4-7.1-.6-10.7 0 .1.1.1.2.1" style="fill:#fff"/></svg>
|
||||||
|
After Width: | Height: | Size: 2.6 KiB |
BIN
assets/icons/speedtest-tracker.png
Normal file
|
After Width: | Height: | Size: 19 KiB |
1
assets/icons/tailscale-light.svg
Normal file
@@ -0,0 +1 @@
|
|||||||
|
<svg xmlns="http://www.w3.org/2000/svg" xml:space="preserve" viewBox="0 0 512 512"><path d="M65.6 318.1c35.3 0 63.9-28.6 63.9-63.9s-28.6-63.9-63.9-63.9S1.8 219 1.8 254.2s28.6 63.9 63.8 63.9m191.6 0c35.3 0 63.9-28.6 63.9-63.9s-28.6-63.9-63.9-63.9-63.9 28.6-63.9 63.9 28.6 63.9 63.9 63.9m0 193.9c35.3 0 63.9-28.6 63.9-63.9s-28.6-63.9-63.9-63.9-63.9 28.6-63.9 63.9 28.6 63.9 63.9 63.9m189.2-193.9c35.3 0 63.9-28.6 63.9-63.9s-28.6-63.9-63.9-63.9-63.9 28.6-63.9 63.9 28.6 63.9 63.9 63.9" style="fill:#fff"/><path d="M65.6 127.7c35.3 0 63.9-28.6 63.9-63.9S100.9 0 65.6 0 1.8 28.6 1.8 63.9s28.6 63.8 63.8 63.8m0 384.3c35.3 0 63.9-28.6 63.9-63.9s-28.6-63.9-63.9-63.9-63.8 28.7-63.8 63.9S30.4 512 65.6 512m191.6-384.3c35.3 0 63.9-28.6 63.9-63.9S292.5 0 257.2 0s-63.9 28.6-63.9 63.9 28.6 63.8 63.9 63.8m189.2 0c35.3 0 63.9-28.6 63.9-63.9S481.6 0 446.4 0c-35.3 0-63.9 28.6-63.9 63.9s28.6 63.8 63.9 63.8m0 384.3c35.3 0 63.9-28.6 63.9-63.9s-28.6-63.9-63.9-63.9-63.9 28.6-63.9 63.9 28.6 63.9 63.9 63.9" style="opacity:.5;fill:#fff"/></svg>
|
||||||
|
After Width: | Height: | Size: 1.0 KiB |
BIN
assets/icons/tailscale.png
Normal file
|
After Width: | Height: | Size: 13 KiB |
1
assets/icons/traefik-light.svg
Normal file
@@ -0,0 +1 @@
|
|||||||
|
<svg xmlns="http://www.w3.org/2000/svg" xml:space="preserve" viewBox="0 0 512 512"><path d="M116.8 428.5c-38.3-3.3-67.5-14.9-88.8-35.2-21.6-20.6-30.9-47.5-27.3-79 4.2-36.2 21.3-61.7 51.4-76.6 23.1-11.5 46.2-15.9 83.8-15.9 26.7 0 49.1 2.2 83.2 8.1 8.4 1.5 15.8 2.7 16.2 2.7.7 0 1.3-2.7 2.8-13.5 2.8-19.5 3.3-26.2 2.5-34.1-.9-9.1-2-13.4-5.5-20.5-8.9-18.2-29.9-29.3-63.7-33.7-9.7-1.2-31.9-1.4-41.6-.3-16.2 1.8-25.3 4.2-45.4 11.8-11.8 4.4-11.9 4.5-16.6 4.2-8.1-.5-13.6-4.2-17.2-11.4-1.5-3-1.7-4.2-1.7-8.3 0-6.1 1.6-9.3 7-14.4C68.5 101 89.2 91.2 110 87c13.3-2.7 19.9-3.3 37.5-3.2 18.2 0 29.8 1.1 46 4.1 26.9 5 47.3 13.9 62.7 27.2 4.6 3.9 11.5 11.7 14.4 16.2.9 1.4 1.8 2.5 2.1 2.5.2 0 1.7-1.7 3.3-3.7 23.3-29.8 62.6-46.7 108.6-46.7 32.5 0 62.8 8.3 85.3 23.3 17.9 11.9 32.4 30.3 38.3 48.4 3.4 10.4 3.9 14.2 3.9 29.3 0 9.4-.2 15.7-.8 18.7-5.3 29.7-17.8 50.2-39.6 64.9-17.5 11.8-39.6 18.7-68.4 21.4-14.5 1.4-41 1.2-58.2-.3-14.6-1.3-32.5-3.6-40.1-5.1-6.4-1.3-28.3-5-28.5-4.8-.1.1-1.1 6.7-2.3 14.6-1.9 12.7-2.2 15.9-2.2 26 0 10.3.1 12.1 1.3 16.9 4 15.3 12.8 25.6 28.7 33.5 15.7 7.8 32.1 11.2 57 11.7 11 .2 16.6.1 23.5-.7 16.7-1.8 24.3-3.7 46.4-11.9 5.5-2 11.2-3.9 12.5-4.1 2.9-.5 8.4.5 11.6 2.1 5.7 2.9 10.6 10.7 10.5 17 0 7.4-2.5 11.8-9.8 17.7-17.4 13.9-39.6 22.4-66.1 25.4-9.5 1.1-31 1.2-41.5.3-29.4-2.6-49.7-7.6-68.4-16.9-14.5-7.3-25.6-16.3-33.9-27.5-2-2.8-3.8-5.1-3.8-5.2-.1-.1-1.4 1.5-3 3.6-7 9-17.6 18.7-28 25.5-15 9.8-36.6 17.3-58.4 20.3-6.7.7-28.3 1.5-33.8 1m37.5-42.2c17.8-4 33.7-12.9 45.2-25.5 10.5-11.4 19.1-28.6 23.9-47.5 2.7-10.7 7.1-40.3 6.1-40.9-.4-.2-2.7-.6-5.2-.8s-9.6-1.1-15.7-1.9c-36.6-4.8-59.1-6.6-71.7-5.9-24 1.3-33.7 3.4-48.1 10.3-7.4 3.5-12.5 7.4-16.5 12.4-5.8 7.3-9.3 14.5-11.7 24.2-1.8 7.1-1.9 25.6-.3 31.5 2.8 10 6 15.7 13.4 23.3 10.1 10.3 23.4 17.2 39.9 20.6 8.4 1.8 8.2 1.7 22.3 1.5 10.3-.1 14.2-.4 18.4-1.3m233.5-139.1c14.9-1.3 24.1-3.6 35.3-9 9.4-4.4 14.8-8.9 20-16.6 7.6-11.2 10.5-21.8 10.5-37.6-.1-11.2-1-15.9-4.9-24-8.6-18-28.9-31-55.6-35.4-6.6-1.1-24.5-.9-31.3.3-13.1 2.4-24.2 6.8-33.9 13.4-18 12.3-30.5 30.7-37.4 55.5-2.7 9.7-3.5 13.5-5.9 30.3l-2.2 15.5 3 .3c9.1 1 29.5 3.5 41.4 5 7.5 1 16.6 2 20.4 2.3 10.6 1 30 1 40.6 0" style="fill:#fff"/></svg>
|
||||||
|
After Width: | Height: | Size: 2.1 KiB |
BIN
assets/icons/traefik.png
Normal file
|
After Width: | Height: | Size: 10 KiB |
1
assets/icons/transmission-light.svg
Normal file
@@ -0,0 +1 @@
|
|||||||
|
<svg xmlns="http://www.w3.org/2000/svg" xml:space="preserve" viewBox="0 0 512 512"><path d="M498.1 435.5v49.9c0 14.7-11.9 26.6-26.6 26.6h-431c-14.7 0-26.6-11.9-26.6-26.6v-49.9c0-10 5.5-18.7 13.7-23.2-.5 5.2-1 10.3-1.5 15.5V464c.4 20.1 13.3 36.4 31.3 39.6l.6.1h400.8c7.5-.2 15-3 20.5-7.7 6.5-5.6 10-13.6 9.8-22.5v-45.9l-2-13.6c6.7 4.8 11 12.6 11 21.5m-52-252.5c-2.9-15-15.8-31-33.6-32.9H307.3v33.4H379c12.6-.4 25.1 8.3 28.4 18.7l27.9 186.4c.7 17-6.3 26.8-18.1 26.4l-315.5 1.2c-13.1-1.4-22.3-10-22-25.7l22-184.8c3.4-12.3 11.4-22.2 24-22.2h80.8v-33.4H94.8c-13.6-.5-27.3 11.3-28.5 25.6C56 259.9 40.8 344.2 33 428.4v35.4c.4 18.3 12.4 30.5 25.6 32.9h400c11.3-.3 23.9-8.1 23.5-23.1v-45.5zM319.7 333.4l-12.9-82.6v36.7c0 11.8-9.6 21.4-21.4 21.4h-57.1c-11.8 0-21.4-9.6-21.4-21.4v-41.7l-15 87.6h-34.3l92.8 59.6L354 333.4zm59-322.9h-71.5c.1.6.1 1.3.1 1.9v68.1h71.4c32 0 58-10.2 58-22.9V33.4c0-12.6-26-22.9-58-22.9m-172.2 70h-71.3c-32 0-58-10.3-58-22.9V33.4c.1-12.6 26-22.9 58-22.9h71.4c-.1.6-.1 1.3-.1 2zm9.5-68.1v275.1c0 6.8 5.5 12.4 12.4 12.4h57.1c6.8 0 12.4-5.5 12.4-12.4V12.4c0-6.8-5.5-12.4-12.4-12.4h-57.1c-6.9 0-12.5 5.6-12.4 12.4" style="fill:#fff"/></svg>
|
||||||
|
After Width: | Height: | Size: 1.1 KiB |
BIN
assets/icons/transmission.png
Normal file
|
After Width: | Height: | Size: 34 KiB |
1
assets/icons/unimus-light.svg
Normal file
@@ -0,0 +1 @@
|
|||||||
|
<svg xmlns="http://www.w3.org/2000/svg" xml:space="preserve" viewBox="0 0 512 512"><path d="M511.8 195 377.4 441.1c-.3.4-.7.7-1.2.7H149c-.7 0-1.3-.6-1.3-1.3s.5-1.2 1.2-1.3c9.1-2.7 240-162 361-245.9.5-.4 1.2-.3 1.6.1.5.4.6 1.1.3 1.6M3.2 165.3c-.1.4.1.8.5 1.1l134.8 99.2c.2.2.5.3.8.3h.6c.4-.2.7-.7.7-1.2l-.5-183.5c0-.5-.3-1-.7-1.2-.4-.3-.9-.3-1.3 0L3.8 164.2c-.4.3-.6.7-.6 1.1m250.5 194.6c0-.4-.2-.8-.5-1.1L2.2 173.9c-.5-.3-1.2-.3-1.7.1s-.6 1.1-.3 1.6l141.2 257.5c.3.4.7.7 1.2.7h.5l.7-.2c0-.1.1-.1.1-.1 6-2.8 42.8-27.2 109.2-72.5.4-.3.6-.7.6-1.1m-253-203c.2.1.4.2.6.2.3 0 .5-.1.7-.2l134.2-84.2c.5-.3.8-.9.6-1.5s-.7-1-1.3-1H1.3c-.7 0-1.3.6-1.3 1.3v84.2c0 .5.3 1 .7 1.2m367.4 124.3c.2.1.4.2.6.2s.5-.1.8-.3l135.6-93.8c.4-.2.6-.6.6-1.1-.1-.5-.3-.9-.7-1.1l-135.6-78.5c-.4-.2-.9-.2-1.3 0-.4.3-.7.7-.7 1.2V280c0 .5.3 1 .7 1.2" style="fill:#fff"/></svg>
|
||||||
|
After Width: | Height: | Size: 843 B |
BIN
assets/icons/unimus.png
Normal file
|
After Width: | Height: | Size: 15 KiB |
1
assets/icons/unraid-light.svg
Normal file
@@ -0,0 +1 @@
|
|||||||
|
<svg xmlns="http://www.w3.org/2000/svg" xml:space="preserve" viewBox="0 0 512 512"><path d="M243.3 181.9h24.9v147.8h-24.9zM24.9 329.7H0V181.9h24.9zm96.8 17.6h24.9v56.4h-24.9zM60.6 284h24.9v91.3H60.6zm121.7 0h24.9v91.3h-24.9zm304.8-102.1H512v147.8h-24.9zm-96.8-17.2h-24.9v-56.4h24.9zm61.1 62.9h-24.9v-91h24.9zm-122.1 0h-24.9v-91h24.9z" style="fill:#fff"/></svg>
|
||||||
|
After Width: | Height: | Size: 360 B |
BIN
assets/icons/unraid.png
Normal file
|
After Width: | Height: | Size: 6.2 KiB |
1
assets/icons/unraid.svg
Normal file
@@ -0,0 +1 @@
|
|||||||
|
<svg xmlns="http://www.w3.org/2000/svg" xml:space="preserve" viewBox="0 0 512 512"><linearGradient id="unraid_svg__a" x1="91.05" x2="420.95" y1="698.55" y2="368.65" gradientTransform="translate(0 -277.8)" gradientUnits="userSpaceOnUse"><stop offset="0" style="stop-color:#e32929"/><stop offset="1" style="stop-color:#ff8d30"/></linearGradient><path d="M243.3 181.9h24.9v147.8h-24.9zM24.9 329.7H0V181.9h24.9zm96.8 17.6h24.9v56.4h-24.9zM60.6 284h24.9v91.3H60.6zm121.7 0h24.9v91.3h-24.9zm304.8-102.1H512v147.8h-24.9zm-96.8-17.2h-24.9v-56.4h24.9zm61.1 62.9h-24.9v-91h24.9zm-122.1 0h-24.9v-91h24.9z" style="fill:url(#unraid_svg__a)"/></svg>
|
||||||
|
After Width: | Height: | Size: 635 B |
1
assets/icons/uptime-kuma-light.svg
Normal file
@@ -0,0 +1 @@
|
|||||||
|
<svg xmlns="http://www.w3.org/2000/svg" xml:space="preserve" viewBox="0 0 622 622"><path d="M392.9 273.8c24.8 58.3 28.7 88.9 28.8 101.8-20.9 8.7-61.6 19.1-113.5 20.7-58.4 1.8-93.1-9.2-102.1-15.3-2.1-2.9-5.8-9.6-5.8-25.3 0-15.2 3.5-41.8 19.7-83.5 21.9-33.1 47.1-46.8 85.1-46.8 38.9 0 64.8 14.1 87.8 48.4m228.8 102.6c0 100.3-56.4 148.1-90 167.6-29.2 16.9-66.1 30.2-109.7 39.5-39.2 8.3-81.6 12.8-122.8 13.1h-3.7c-78.2 0-182.1-15.1-241.4-85.6C18.3 468.6.3 416.4.3 355.7c0-50.2 12.3-104.8 37.6-166.9l3-7.4 4.1-6.8c29.2-48.1 66.1-85.2 109.7-110.5 44.4-25.7 95-38.8 150.3-38.8s105.9 13 150.5 38.6c43.7 25.1 80.9 62 110.7 109.7l3.8 6.2 2.9 6.6c32.9 74.9 48.8 137 48.8 190M481.4 226.6c-42-67.4-100.8-101.2-176.3-101.2-75.4 0-133.6 33.7-174.6 101.2-40.3 98.8-40.3 172.1 0 220 60.5 71.9 270.4 57.6 350.9 10.9 53.7-31.2 53.7-108.2 0-230.9" style="fill:#fff"/></svg>
|
||||||
|
After Width: | Height: | Size: 853 B |
BIN
assets/icons/uptime-kuma.png
Normal file
|
After Width: | Height: | Size: 20 KiB |
1
assets/icons/vaultwarden-light.svg
Normal file
@@ -0,0 +1 @@
|
|||||||
|
<svg xmlns="http://www.w3.org/2000/svg" xml:space="preserve" viewBox="0 0 512 512"><path d="m508.4 249.7-21.6-13c-.2-2.3-.4-4.6-.7-6.9l18.7-17c1.9-1.7 2.8-4.3 2.3-6.8s-2.3-4.6-4.7-5.5l-23.7-8.5c-.6-2.2-1.3-4.4-2-6.6l15-20.3c1.5-2.1 1.9-4.8.9-7.2s-3.1-4.1-5.7-4.4l-25-3.7c-1.1-2-2.1-4-3.3-6l10.8-22.9c1.1-2.3.9-5.1-.5-7.2s-3.9-3.4-6.4-3.2l-25.3 1.2c-1.4-1.8-2.8-3.5-4.3-5.2l6.2-24.6c.6-2.5-.1-5.1-1.9-6.9s-4.5-2.6-6.9-1.9l-24.6 6.2c-1.7-1.5-3.5-2.9-5.2-4.3l1.2-25.3c.1-2.6-1.1-5-3.2-6.4s-4.9-1.6-7.2-.5l-22.9 10.8-6-3.3-3.7-25c-.4-2.5-2.1-4.7-4.4-5.7-2.4-1-5.1-.7-7.2.9l-20.3 15c-2.2-.7-4.4-1.4-6.6-2l-8.5-23.7c-.9-2.4-2.9-4.2-5.5-4.7-2.5-.5-5.1.4-6.8 2.3l-17 18.7c-2.3-.3-4.6-.5-6.9-.7l-13-21.6C260.9 1.3 258.6 0 256 0s-5 1.3-6.3 3.6l-13 21.6c-2.3.2-4.6.4-6.9.7l-17-18.7c-1.7-1.9-4.3-2.8-6.8-2.3s-4.6 2.3-5.5 4.7L192 33.3c-2.2.6-4.4 1.3-6.6 2l-20.3-15c-2.1-1.5-4.8-1.9-7.2-.9s-4.1 3.1-4.4 5.7l-3.7 25c-2 1.1-4 2.1-6 3.3L121 42.6c-2.3-1.1-5.1-.9-7.2.5s-3.4 3.9-3.2 6.4l1.2 25.3c-1.8 1.4-3.5 2.8-5.2 4.3L82 72.9c-2.5-.6-5.1.1-6.9 1.9s-2.5 4.5-1.9 6.9l6.2 24.6c-1.5 1.7-2.9 3.5-4.3 5.2l-25.3-1.2c-2.6-.1-5 1.1-6.4 3.2s-1.6 4.9-.5 7.2l10.8 22.9-3.3 6-25 3.7c-2.5.4-4.7 2.1-5.7 4.4-1 2.4-.6 5.1.9 7.2l15 20.3c-.7 2.2-1.4 4.4-2 6.6l-23.7 8.5c-2.4.9-4.2 2.9-4.7 5.5-.5 2.5.4 5.1 2.3 6.8l18.7 17c-.3 2.3-.5 4.6-.7 6.9l-21.6 13C1.3 251.1 0 253.4 0 256s1.3 4.9 3.6 6.3l21.6 13c.2 2.3.4 4.6.7 6.9l-18.7 17c-1.9 1.7-2.8 4.3-2.3 6.8s2.3 4.6 4.7 5.5l23.7 8.5c.6 2.2 1.3 4.4 2 6.6l-15 20.3c-1.5 2.1-1.9 4.8-.9 7.2s3.1 4.1 5.7 4.4l25 3.7c1.1 2 2.1 4 3.3 6L42.6 391c-1.1 2.3-.9 5.1.5 7.2 1.4 2 3.6 3.3 6.1 3.3h.4l25.3-1.2c1.4 1.8 2.8 3.5 4.3 5.2L73 430.1c-.6 2.5.1 5.1 1.9 6.9 1.4 1.4 3.3 2.1 5.2 2.1.6 0 1.2-.1 1.8-.2l24.6-6.2c1.7 1.5 3.5 2.9 5.2 4.3l-1.2 25.3c-.1 2.6 1.1 5 3.2 6.4 1.2.8 2.6 1.2 4.1 1.2 1.1 0 2.1-.2 3.1-.7l22.9-10.8 6 3.3 3.7 25c.4 2.5 2.1 4.7 4.4 5.7.9.4 1.9.6 2.8.6 1.5 0 3.1-.5 4.4-1.4l20.3-15c2.2.7 4.4 1.4 6.6 2l8.5 23.7c.9 2.4 2.9 4.2 5.5 4.7.5.1 1 .1 1.4.1 2 0 4-.9 5.4-2.4l17-18.7c2.3.3 4.6.5 6.9.7l13 21.6c1.3 2.2 3.7 3.6 6.3 3.6s4.9-1.3 6.3-3.6l13-21.6c2.3-.2 4.6-.4 6.9-.7l17 18.7c1.4 1.5 3.4 2.4 5.4 2.4.5 0 1 0 1.4-.1 2.5-.5 4.6-2.3 5.5-4.7l8.5-23.7c2.2-.6 4.4-1.3 6.6-2l20.3 15c1.3.9 2.8 1.4 4.4 1.4.9 0 1.9-.2 2.8-.6 2.4-1 4.1-3.1 4.4-5.7l3.7-25c2-1.1 4-2.1 6-3.3l22.9 10.8c1 .5 2.1.7 3.1.7 1.4 0 2.8-.4 4.1-1.2 2.1-1.4 3.4-3.9 3.2-6.4l-1.2-25.3c1.8-1.4 3.5-2.8 5.2-4.3l24.6 6.2c.6.1 1.2.2 1.8.2 1.9 0 3.8-.8 5.2-2.1 1.8-1.8 2.5-4.5 1.9-6.9l-6.2-24.6c1.5-1.7 2.9-3.5 4.3-5.2l25.3 1.2h.4c2.4 0 4.7-1.2 6.1-3.3s1.6-4.9.5-7.2l-10.8-22.9 3.3-6 25-3.7c2.5-.4 4.7-2.1 5.7-4.4 1-2.4.6-5.1-.9-7.2l-15-20.3c.7-2.2 1.4-4.4 2-6.6l23.7-8.5c2.4-.9 4.2-2.9 4.7-5.5.5-2.5-.4-5.1-2.3-6.8l-18.7-17c.3-2.3.5-4.6.7-6.9l21.6-13c2.2-1.3 3.6-3.7 3.6-6.3 0-2.5-1.3-4.8-3.6-6.2m-64.7 6.3c0 49.9-19.6 95.3-51.4 129l-33.7-5.3c-8-1.3-15.5 4.2-16.7 12.2l-5.4 33.8c-13 6.2-26.8 10.9-41.3 14L402.6 139c6.8 8.5 12.9 17.6 18.2 27.3l-15.5 30.5c-3.7 7.2-.8 16 6.4 19.7l30.5 15.5q1.5 11.7 1.5 24M175.5 425.6l-5.4-33.8c-1.3-8-8.8-13.4-16.7-12.2l-33.7 5.3c-31.9-33.7-51.4-79.1-51.4-129 0-8.2.5-16.2 1.6-24.2l30.5-15.5c7.2-3.7 10.1-12.5 6.4-19.7L91.3 166c5.3-9.6 11.4-18.7 18.2-27.3l107.4 300.7c-14.6-2.9-28.4-7.6-41.4-13.8m45.9-354.1 24.2 24.2c2.7 2.7 6.5 4.3 10.3 4.3 3.9 0 7.6-1.5 10.3-4.3l24.2-24.2c20.6 3.8 40 11.1 57.7 21.1l-79.8 226.9c-4.8 13.1-8.9 25.7-12.4 37.5-3.5-12-7.7-24.9-12.5-38.4L164.2 92.3c17.5-9.9 36.8-17 57.2-20.8" style="fill:#fff"/></svg>
|
||||||
|
After Width: | Height: | Size: 3.4 KiB |
BIN
assets/icons/vaultwarden.png
Normal file
|
After Width: | Height: | Size: 18 KiB |
1
assets/icons/woodpecker-ci-light.svg
Normal file
@@ -0,0 +1 @@
|
|||||||
|
<svg xmlns="http://www.w3.org/2000/svg" xml:space="preserve" viewBox="0 0 512 512"><path d="M171.4 27.5c-48.2.7-97.2 12.4-128.6 6.7-2.4-.4-3.8 2.4-2.1 4.1 26.5 25.3 36.5 50.7 66 54.2l.9.2c-13.6 14-25.2 32.4-33.4 56.1-8.8 25.4-11.3 52.9-14.2 84.8-4.4 47.4-9.3 101-36.1 168.3C13.3 428.5 5.3 456.2 0 484.5h40.8c4.7-23.2 11.5-46 20.2-68 28.9-72.6 34.3-131.8 38.7-179.4 2.7-29.2 5-54.5 12.2-75.3 21-60.3 70.9-73.6 109.9-66 37.8 7.3 75 36.9 73 79.2-1.4 28.8-14 41.7-23.2 51.2-5 5.2-9.8 10.1-12.1 17.1-5.5 16.5.2 35 15.3 49.6 40 37.3 61.8 107.5 60.6 191.7h39.9c1.1-95.3-25.1-176.1-72.9-220.7-3.8-3.6-4.8-6.5-5.7-6 2.2-2.8 5.8-6 8.3-8.7 52.9-39.2 140-3.4 192.6 17.4 13.6 5.4 20.3-7.8 7.3-15.5-45.2-26.7-137.7-97.2-189.6-143.4-7.2-6.4-12.2-14-20.6-21.1-27.9-49.5-75.2-59.8-123.3-59.1M234.8 136c-1.2.1-2.4.2-3.6.4-14.8 2.8-24.5 17.1-21.8 31.9 1.9 10 9.2 18.2 19.1 21.1 14.3 4.7 29.7-3.1 34.4-17.4s-3.1-29.7-17.4-34.4c-3.4-1.3-7.1-1.8-10.7-1.6m-79.7 264.8c-.7 0-1.4.2-2 .7-1.9 1.4-3.5 5.5-1.4 10.3 9.7 22.3 16.4 45.8 22.6 72.7h40.5c-10.2-29.9-29.3-61.3-50.1-79.1-3.7-3.2-7.2-4.7-9.6-4.6" style="fill:#fff"/></svg>
|
||||||
|
After Width: | Height: | Size: 1.1 KiB |
BIN
assets/icons/woodpecker-ci.png
Normal file
|
After Width: | Height: | Size: 12 KiB |
BIN
assets/wallpaper.jpg
Normal file
|
After Width: | Height: | Size: 1.6 MiB |
@@ -15,7 +15,7 @@
|
|||||||
if (!document.getElementById('sidebar-logo')) {
|
if (!document.getElementById('sidebar-logo')) {
|
||||||
var logo = document.createElement('img');
|
var logo = document.createElement('img');
|
||||||
logo.id = 'sidebar-logo';
|
logo.id = 'sidebar-logo';
|
||||||
logo.src = 'https://cdn.jsdelivr.net/gh/selfhst/icons@main/svg/unraid.svg';
|
logo.src = '/custom/assets/icons/unraid.svg';
|
||||||
logo.alt = '';
|
logo.alt = '';
|
||||||
menu.appendChild(logo);
|
menu.appendChild(logo);
|
||||||
}
|
}
|
||||||
@@ -152,8 +152,8 @@
|
|||||||
(function() {
|
(function() {
|
||||||
'use strict';
|
'use strict';
|
||||||
|
|
||||||
var CDN_PNG = 'https://cdn.jsdelivr.net/gh/selfhst/icons@main/png';
|
var CDN_PNG = '/custom/assets/icons';
|
||||||
var CDN_SVG = 'https://cdn.jsdelivr.net/gh/selfhst/icons@main/svg';
|
var CDN_SVG = '/custom/assets/icons';
|
||||||
|
|
||||||
// Container name → selfh.st icon name (lowercase)
|
// Container name → selfh.st icon name (lowercase)
|
||||||
// Only needed for names that don't auto-match.
|
// Only needed for names that don't auto-match.
|
||||||
|
|||||||
@@ -51,7 +51,7 @@
|
|||||||
============================================ */
|
============================================ */
|
||||||
body {
|
body {
|
||||||
background: #0a0a0f !important;
|
background: #0a0a0f !important;
|
||||||
background-image: url('/custom/wallpaper.jpg') !important;
|
background-image: url('/custom/assets/wallpaper.jpg') !important;
|
||||||
background-size: cover !important;
|
background-size: cover !important;
|
||||||
background-position: center center !important;
|
background-position: center center !important;
|
||||||
background-attachment: fixed !important;
|
background-attachment: fixed !important;
|
||||||
|
|||||||