dashboard icons upload
1
dashboard-icons-main/.github/FUNDING.yml
vendored
Normal file
@ -0,0 +1 @@
|
||||
custom: https://shop.walkx.fyi/l/donate
|
26
dashboard-icons-main/.github/ISSUE_TEMPLATE/request_suggest.yml
vendored
Normal file
@ -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
|
32
dashboard-icons-main/.github/workflows/icons-page-generation.yml
vendored
Normal file
@ -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
|
31
dashboard-icons-main/.github/workflows/png-compression.yml
vendored
Normal file
@ -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
|
31
dashboard-icons-main/.github/workflows/svg-compression.yml
vendored
Normal file
@ -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
|
23
dashboard-icons-main/CODE_OF_CONDUCT.md
Normal file
@ -0,0 +1,23 @@
|
||||
# 🚨 Code of Conduct
|
||||
|
||||
We are committed to providing a welcoming and harassment-free environment for everyone who wants to participate in our icon repository, regardless of gender, gender identity and expression, sexual orientation, disability, physical appearance, body size, race, age, religion, or nationality.
|
||||
|
||||
## 💬 Communication
|
||||
|
||||
All communication should be appropriate for a professional audience including people of many different backgrounds. Be respectful, considerate, and constructive in all communication, both online and offline.
|
||||
|
||||
## 🚫 Prohibited Behavior
|
||||
|
||||
Harassment, intimidation, discrimination, or any other inappropriate conduct or behavior will not be tolerated. This includes, but is not limited to, the use of sexual language or imagery, deliberate intimidation, stalking, following, harassing photography or recording, sustained disruption of talks or other events, inappropriate physical contact, and unwelcome sexual attention.
|
||||
|
||||
## 📢 Reporting
|
||||
|
||||
If you believe someone is violating the code of conduct, please report it immediately to contact@walkx.fyi. All reports will be reviewed and investigated promptly and confidentially.
|
||||
|
||||
## 🚨 Consequences
|
||||
|
||||
Anyone found to be engaging in behavior that violates the code of conduct will be subject to appropriate action, which may include, but is not limited to, warning, removal from the repository, or banning from participation in the repository.
|
||||
|
||||
## 👍 Acknowledgment
|
||||
|
||||
We ask that all participants in this repository agree to abide by this code of conduct. By contributing to this repository, you agree to these terms and conditions. Thank you for helping us create a welcoming and inclusive environment for all. 🙏
|
32
dashboard-icons-main/CONTRIBUTING.md
Normal file
@ -0,0 +1,32 @@
|
||||
# 🎉 Contributing Guidelines
|
||||
|
||||
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.
|
||||
|
||||
## 🌟 Icon Specifications
|
||||
|
||||
- Each icon should include both a **PNG** and **SVG** version. If an **SVG** cannot be found, then only a **PNG** version is required.
|
||||
- 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.)
|
||||
- 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`.
|
||||
- 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.
|
||||
|
||||
|
||||
## 💻 Gitmoji Commits
|
||||
|
||||
- Please use [Gitmoji](https://gitmoji.dev/) in your commit messages. This helps us keep our commit history clear and easy to understand. For example, you might use the `🍱` emoji for a commit that updates an icon's color, or the `📝` emoji for a commit that updates the documentation.
|
||||
|
||||
|
||||
## 🤝 Contributing
|
||||
|
||||
1. Fork the repository to your own GitHub account.
|
||||
2. Clone the repository to your local machine.
|
||||
3. Add your icon(s) to the repository, following the specifications listed above.
|
||||
4. Push your changes to your fork.
|
||||
5. Create a pull request in the main repository.
|
||||
|
||||
## 🚨 Code of Conduct
|
||||
|
||||
Please note that by contributing to this repository, you agree to abide by our code of conduct, which can be found in the [CODE_OF_CONDUCT.md](CODE_OF_CONDUCT.md) file in the repository.
|
||||
|
||||
---
|
||||
|
||||
If you have any questions or concerns, please don't hesitate to reach out to me at contact@walkx.fyi. Happy contributing! 🙌
|
21
dashboard-icons-main/ICONS.md
Normal file
28
dashboard-icons-main/LICENSE
Normal file
@ -0,0 +1,28 @@
|
||||
**Icons — Assets**
|
||||
(Almost) All product names, trademarks and registered trademarks in the images in this repository, are 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, do not imply endorsement.
|
||||
|
||||
--------------------------------
|
||||
|
||||
**Code — Documentation**
|
||||
|
||||
Copyright (c) 2022 Bjorn Lammers
|
||||
|
||||
Permission is hereby granted, free of charge, to any person obtaining a copy
|
||||
of this software and associated documentation files (the "Software"), to deal
|
||||
in the Software without restriction, including without limitation the rights
|
||||
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
||||
copies of the Software, and to permit persons to whom the Software is
|
||||
furnished to do so, subject to the following conditions:
|
||||
|
||||
The above copyright notice and this permission notice shall be included in all
|
||||
copies or substantial portions of the Software.
|
||||
|
||||
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
||||
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
||||
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
||||
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
||||
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
||||
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
||||
SOFTWARE.
|
79
dashboard-icons-main/README.md
Normal file
@ -0,0 +1,79 @@
|
||||
<p align="center">
|
||||
<h2 align="center"> 🟣 Dashboard Icons </h3>
|
||||
<p align="center">
|
||||
<a href="https://www.jsdelivr.com/package/gh/walkxcode/dashboard-icons">
|
||||
<img src="https://img.shields.io/jsdelivr/gh/hy/walkxcode/dashboard-icons?color=%23A020F0" alt="JSdelivr weekly downloads badge">
|
||||
</a>
|
||||
</p>
|
||||
<p align="center">
|
||||
🚀 The best place to find icons for your dashboards.
|
||||
<br />
|
||||
<a href="#-icons"><strong>👀 See the icons</strong></a> • <a href="https://shop.walkx.fyi/l/donate" target="_blank"><strong>🙌🏻 Donate</strong></a>
|
||||
<br />
|
||||
<br />
|
||||
</p>
|
||||
</p>
|
||||
|
||||
# 📖 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
|
||||
**⚠️ Warning!** Going to this page will load every single icon in the repository. This might cause:
|
||||
- 📉 An excessive amount of data use.
|
||||
- 💻 System slowdowns.
|
||||
- 🌐 Browser crashes.
|
||||
|
||||
*If your device cannot handle loading more than 1000 images, we advice to not go to this page.*
|
||||
|
||||
➡️ Click [**here**](ICONS.md) 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.
|
||||
|
20
dashboard-icons-main/config/TEMPLATE.md
Normal file
@ -0,0 +1,20 @@
|
||||
<p align="center">
|
||||
<h2 align="center"> 🟣 Dashboard Icons </h3>
|
||||
<p align="center">
|
||||
<a href="https://www.jsdelivr.com/package/gh/walkxcode/dashboard-icons">
|
||||
<img src="https://img.shields.io/jsdelivr/gh/hy/walkxcode/dashboard-icons?color=%23A020F0" alt="JSdelivr weekly downloads badge">
|
||||
</a>
|
||||
</p>
|
||||
<p align="center">
|
||||
🚀 The best place to find icons for your dashboards.
|
||||
<br />
|
||||
<a href="https://github.com/walkxcode/dashboard-icons/"><strong>⬅️ Back to repo</strong></a> • <a href="https://shop.walkx.fyi/l/donate" target="_blank"><strong>🙌🏻 Donate</strong></a>
|
||||
<br />
|
||||
<br />
|
||||
</p>
|
||||
</p>
|
||||
<div align="center">
|
||||
<!-- ICONS -->
|
||||
|
||||
<!-- END ICONS -->
|
||||
</div>
|
BIN
dashboard-icons-main/config/banner.png
Normal file
After Width: | Height: | Size: 9.5 KiB |
32
dashboard-icons-main/config/ci.py
Normal file
@ -0,0 +1,32 @@
|
||||
import pathlib
|
||||
from pathlib import Path
|
||||
|
||||
root = pathlib.Path(__file__).parent.resolve()
|
||||
template_path = root / "TEMPLATE.md"
|
||||
path = root / "../ICONS.md"
|
||||
|
||||
|
||||
def generate_img_tag(file):
|
||||
return f'<img src="png/{file.name}" alt="{file.stem}" height="50">'
|
||||
|
||||
|
||||
imgs = sorted(Path("./png").glob("*.png"))
|
||||
img_tags = [generate_img_tag(x) for x in imgs]
|
||||
line_number = 0
|
||||
|
||||
# Read the template file
|
||||
with open(template_path, "r", encoding="UTF-8") as f:
|
||||
lines = f.readlines()
|
||||
# Find the line that starts with "<!-- ICONS -->"
|
||||
for line in lines:
|
||||
if line.startswith("<!-- ICONS -->"):
|
||||
line_number = lines.index(line)
|
||||
break
|
||||
# Insert the icons after the line
|
||||
lines.insert(line_number + 1, " ".join(img_tags))
|
||||
# Write the new file
|
||||
with open(path, "w", encoding="UTF-8") as f:
|
||||
f.write("".join(lines))
|
||||
f.write("\n")
|
||||
print("Done!")
|
||||
print("Please commit the new ICONS.md file.")
|
BIN
dashboard-icons-main/config/logo.png
Normal file
After Width: | Height: | Size: 64 KiB |
BIN
dashboard-icons-main/png/3cx.png
Normal file
After Width: | Height: | Size: 24 KiB |
BIN
dashboard-icons-main/png/act.png
Normal file
After Width: | Height: | Size: 13 KiB |
BIN
dashboard-icons-main/png/actual.png
Normal file
After Width: | Height: | Size: 12 KiB |
BIN
dashboard-icons-main/png/adblock.png
Normal file
After Width: | Height: | Size: 49 KiB |
BIN
dashboard-icons-main/png/adguard-home.png
Normal file
After Width: | Height: | Size: 13 KiB |
BIN
dashboard-icons-main/png/adminer.png
Normal file
After Width: | Height: | Size: 10 KiB |
BIN
dashboard-icons-main/png/adsbexchange.png
Normal file
After Width: | Height: | Size: 18 KiB |
BIN
dashboard-icons-main/png/airsonic.png
Normal file
After Width: | Height: | Size: 4.0 KiB |
BIN
dashboard-icons-main/png/airtel.png
Normal file
After Width: | Height: | Size: 7.3 KiB |
BIN
dashboard-icons-main/png/alarmpi.png
Normal file
After Width: | Height: | Size: 4.5 KiB |
BIN
dashboard-icons-main/png/albertheijn.png
Normal file
After Width: | Height: | Size: 18 KiB |
BIN
dashboard-icons-main/png/alertmanager.png
Normal file
After Width: | Height: | Size: 8.8 KiB |
BIN
dashboard-icons-main/png/algovpn.png
Normal file
After Width: | Height: | Size: 4.4 KiB |
BIN
dashboard-icons-main/png/alltube.png
Normal file
After Width: | Height: | Size: 10 KiB |
BIN
dashboard-icons-main/png/alma.png
Normal file
After Width: | Height: | Size: 23 KiB |
BIN
dashboard-icons-main/png/alpine.png
Normal file
After Width: | Height: | Size: 18 KiB |
BIN
dashboard-icons-main/png/amazon-light.png
Normal file
After Width: | Height: | Size: 17 KiB |
BIN
dashboard-icons-main/png/amazon.png
Normal file
After Width: | Height: | Size: 23 KiB |
BIN
dashboard-icons-main/png/amcrest-cloud.png
Normal file
After Width: | Height: | Size: 16 KiB |
BIN
dashboard-icons-main/png/amcrest.png
Normal file
After Width: | Height: | Size: 39 KiB |
BIN
dashboard-icons-main/png/amd-light.png
Normal file
After Width: | Height: | Size: 2.5 KiB |
BIN
dashboard-icons-main/png/amd.png
Normal file
After Width: | Height: | Size: 2.5 KiB |
BIN
dashboard-icons-main/png/amp.png
Normal file
After Width: | Height: | Size: 6.5 KiB |
BIN
dashboard-icons-main/png/ampache.png
Normal file
After Width: | Height: | Size: 38 KiB |
BIN
dashboard-icons-main/png/amvd.png
Normal file
After Width: | Height: | Size: 13 KiB |
BIN
dashboard-icons-main/png/android-auto.png
Normal file
After Width: | Height: | Size: 24 KiB |
BIN
dashboard-icons-main/png/android-light.png
Normal file
After Width: | Height: | Size: 18 KiB |
BIN
dashboard-icons-main/png/android-robot.png
Normal file
After Width: | Height: | Size: 14 KiB |
BIN
dashboard-icons-main/png/android.png
Normal file
After Width: | Height: | Size: 15 KiB |
BIN
dashboard-icons-main/png/anonaddy.png
Normal file
After Width: | Height: | Size: 20 KiB |
BIN
dashboard-icons-main/png/ansible.png
Normal file
After Width: | Height: | Size: 8.3 KiB |
BIN
dashboard-icons-main/png/apache-cassandra.png
Normal file
After Width: | Height: | Size: 38 KiB |
BIN
dashboard-icons-main/png/apache-druid.png
Normal file
After Width: | Height: | Size: 6.2 KiB |
BIN
dashboard-icons-main/png/apache-openoffice.png
Normal file
After Width: | Height: | Size: 16 KiB |
BIN
dashboard-icons-main/png/apache-solr.png
Normal file
After Width: | Height: | Size: 11 KiB |
BIN
dashboard-icons-main/png/apache-subversion.png
Normal file
After Width: | Height: | Size: 14 KiB |
BIN
dashboard-icons-main/png/apache-tomcat.png
Normal file
After Width: | Height: | Size: 25 KiB |
BIN
dashboard-icons-main/png/apache.png
Normal file
After Width: | Height: | Size: 22 KiB |
BIN
dashboard-icons-main/png/apc.png
Normal file
After Width: | Height: | Size: 7.3 KiB |
BIN
dashboard-icons-main/png/appdaemon.png
Normal file
After Width: | Height: | Size: 621 B |
BIN
dashboard-icons-main/png/apple-alt.png
Normal file
After Width: | Height: | Size: 10 KiB |
BIN
dashboard-icons-main/png/apple.png
Normal file
After Width: | Height: | Size: 5.6 KiB |
BIN
dashboard-icons-main/png/apprise.png
Normal file
After Width: | Height: | Size: 15 KiB |
BIN
dashboard-icons-main/png/arch.png
Normal file
After Width: | Height: | Size: 18 KiB |
BIN
dashboard-icons-main/png/archisteamfarm.png
Normal file
After Width: | Height: | Size: 90 KiB |
BIN
dashboard-icons-main/png/archivebox.png
Normal file
After Width: | Height: | Size: 7.9 KiB |
BIN
dashboard-icons-main/png/archiveteamwarrior.png
Normal file
After Width: | Height: | Size: 96 KiB |
BIN
dashboard-icons-main/png/arduino.png
Normal file
After Width: | Height: | Size: 7.4 KiB |
BIN
dashboard-icons-main/png/arggocd.png
Normal file
After Width: | Height: | Size: 32 KiB |
BIN
dashboard-icons-main/png/ariang.png
Normal file
After Width: | Height: | Size: 13 KiB |
BIN
dashboard-icons-main/png/arm.png
Normal file
After Width: | Height: | Size: 4.6 KiB |
BIN
dashboard-icons-main/png/arris-light.png
Normal file
After Width: | Height: | Size: 6.4 KiB |
BIN
dashboard-icons-main/png/arris.png
Normal file
After Width: | Height: | Size: 6.3 KiB |
BIN
dashboard-icons-main/png/artifactory.png
Normal file
After Width: | Height: | Size: 2.6 KiB |
BIN
dashboard-icons-main/png/asana.png
Normal file
After Width: | Height: | Size: 35 KiB |
BIN
dashboard-icons-main/png/asrockrackipmi.png
Normal file
After Width: | Height: | Size: 4.5 KiB |
BIN
dashboard-icons-main/png/assetgrid.png
Normal file
After Width: | Height: | Size: 2.2 KiB |
BIN
dashboard-icons-main/png/asterisk.png
Normal file
After Width: | Height: | Size: 5.8 KiB |
BIN
dashboard-icons-main/png/asus-light.png
Normal file
After Width: | Height: | Size: 5.4 KiB |
BIN
dashboard-icons-main/png/asus-rog.png
Normal file
After Width: | Height: | Size: 8.8 KiB |
BIN
dashboard-icons-main/png/asus-router.png
Normal file
After Width: | Height: | Size: 18 KiB |
BIN
dashboard-icons-main/png/asus.png
Normal file
After Width: | Height: | Size: 4.2 KiB |
BIN
dashboard-icons-main/png/at-t.png
Normal file
After Width: | Height: | Size: 48 KiB |
BIN
dashboard-icons-main/png/atlassian-bamboo.png
Normal file
After Width: | Height: | Size: 12 KiB |
BIN
dashboard-icons-main/png/atlassian-confluence.png
Normal file
After Width: | Height: | Size: 20 KiB |
BIN
dashboard-icons-main/png/atlassian-jira.png
Normal file
After Width: | Height: | Size: 14 KiB |
BIN
dashboard-icons-main/png/atlassian-opsgenie.png
Normal file
After Width: | Height: | Size: 14 KiB |
BIN
dashboard-icons-main/png/atlassian-trello.png
Normal file
After Width: | Height: | Size: 6.1 KiB |
BIN
dashboard-icons-main/png/atlassian.png
Normal file
After Width: | Height: | Size: 12 KiB |
BIN
dashboard-icons-main/png/audacity.png
Normal file
After Width: | Height: | Size: 56 KiB |
BIN
dashboard-icons-main/png/audiobookshelf.png
Normal file
After Width: | Height: | Size: 24 KiB |
BIN
dashboard-icons-main/png/auracast.png
Normal file
After Width: | Height: | Size: 10 KiB |
BIN
dashboard-icons-main/png/authelia.png
Normal file
After Width: | Height: | Size: 33 KiB |
BIN
dashboard-icons-main/png/authentik-light.png
Normal file
After Width: | Height: | Size: 6.1 KiB |
BIN
dashboard-icons-main/png/authentik.png
Normal file
After Width: | Height: | Size: 5.3 KiB |
BIN
dashboard-icons-main/png/autobrr.png
Normal file
After Width: | Height: | Size: 32 KiB |
BIN
dashboard-icons-main/png/avmfritzbox.png
Normal file
After Width: | Height: | Size: 29 KiB |
BIN
dashboard-icons-main/png/aws-ecs.png
Normal file
After Width: | Height: | Size: 12 KiB |
BIN
dashboard-icons-main/png/aws.png
Normal file
After Width: | Height: | Size: 27 KiB |
BIN
dashboard-icons-main/png/awx.png
Normal file
After Width: | Height: | Size: 38 KiB |
BIN
dashboard-icons-main/png/axis.png
Normal file
After Width: | Height: | Size: 22 KiB |
BIN
dashboard-icons-main/png/azuracast.png
Normal file
After Width: | Height: | Size: 16 KiB |
BIN
dashboard-icons-main/png/azure-container-instances.png
Normal file
After Width: | Height: | Size: 13 KiB |
BIN
dashboard-icons-main/png/azure-container-service.png
Normal file
After Width: | Height: | Size: 21 KiB |
BIN
dashboard-icons-main/png/azure-dns.png
Normal file
After Width: | Height: | Size: 55 KiB |
BIN
dashboard-icons-main/png/azure.png
Normal file
After Width: | Height: | Size: 7.4 KiB |