mirror of
https://github.com/fastfetch-cli/fastfetch.git
synced 2026-09-13 02:42:09 +02:00
bc8ce39193
Ref: #2460
73 lines
3.1 KiB
YAML
73 lines
3.1 KiB
YAML
name: Logo Request
|
|
description: Request a new ASCII logo for your favorite distro
|
|
title: "[LOGO] "
|
|
labels: ["logo request"]
|
|
body:
|
|
- type: markdown
|
|
attributes:
|
|
value: |
|
|
> [!WARNING]
|
|
> **NB:** If your logo request does not meet the basic requirements outlined in this template, the issue may be closed at any time without any further explanation.
|
|
|
|
**Tip:** You can display a logo in fastfetch without adding it to fastfetch's official repo.
|
|
For highly customized, personal logos, we recommend keeping them locally.
|
|
You can test your logo locally using:
|
|
`fastfetch -l /path/to/logo.txt --logo-color-1 white --logo-color-2 red`
|
|
Please refer to the [Migration Guide](https://github.com/fastfetch-cli/fastfetch/wiki/Migrate-Neofetch-Logo-To-Fastfetch) for details on color placeholders (`$1`, `$2`, etc.).
|
|
|
|
- type: textarea
|
|
attributes:
|
|
label: OS
|
|
description: Paste the contents of `/etc/os-release` (specifically the `ID` and `PRETTY_NAME` fields). If neither file exists, describe how to identify the distro.
|
|
placeholder: cat /etc/os-release
|
|
validations:
|
|
required: true
|
|
|
|
- type: input
|
|
attributes:
|
|
label: Public repository URL
|
|
description: A public repository is required to verify the request. Please provide a link to the repository where the distro is developed.
|
|
placeholder: https://github.com/example/distro
|
|
validations:
|
|
required: true
|
|
|
|
- type: input
|
|
attributes:
|
|
label: Distro Website
|
|
description: To help prevent spam and verify the request, a distro website is required, and a downloadable ISO must be available on that site.
|
|
placeholder: https://example.com
|
|
validations:
|
|
required: true
|
|
|
|
- type: textarea
|
|
attributes:
|
|
label: ASCII Art
|
|
description: |
|
|
The ASCII logo should not take up too much space (smaller than 50x20 characters, W x H).
|
|
**Important:** Fastfetch uses `$1`, `$2`, `$3` etc. for color placeholders. Do NOT use hardcoded ANSI escape codes (like `\033[38;2...m`) or Neofetch's `${c1}` syntax.
|
|
Take <https://github.com/fastfetch-cli/fastfetch/tree/dev/src/logo/ascii> as examples.
|
|
placeholder: Paste ASCII art with $1, $2 placeholders here
|
|
validations:
|
|
required: true
|
|
|
|
- type: input
|
|
attributes:
|
|
label: Original Image URL
|
|
description: If the ASCII art is based on an image, please provide a link to the original image file.
|
|
placeholder: Image URL from the distro website mentioned above
|
|
|
|
- type: checkboxes
|
|
attributes:
|
|
label: Checklist
|
|
options:
|
|
- label: My distro has reached a stable state (out of beta, alpha, RC).
|
|
required: true
|
|
- label: The ASCII art is smaller than 50x20 characters (W x H).
|
|
required: true
|
|
- label: The ASCII art uses `$N` color placeholders (or colors are natively available in `os-release`).
|
|
required: true
|
|
- label: The ASCII art has no unnecessary trailing spaces at the end of lines.
|
|
required: true
|
|
- label: I promise that I will send a removal request if the distro is discontinued.
|
|
required: true
|