Skip to content

Commit b566ffe

Browse files
committed
Doc: update more issue templates [ci skip]
1 parent 60c06a8 commit b566ffe

File tree

4 files changed

+74
-41
lines changed

4 files changed

+74
-41
lines changed

.github/ISSUE_TEMPLATE/feature_request.md

Lines changed: 0 additions & 18 deletions
This file was deleted.
Lines changed: 36 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,36 @@
1+
name: Feature Request
2+
description: Suggest an idea for this project
3+
title: "[FEAT] "
4+
labels: ["enhancement"]
5+
body:
6+
- type: markdown
7+
attributes:
8+
value: |
9+
Fastfetch is a system information tool. We only accept hardware or system level software feature requests.
10+
For most personal uses, I recommend using `Command` module to detect it yourself, which can be used to grab output from a custom shell script:
11+
12+
```jsonc
13+
// This module shows the git version
14+
{
15+
"modules": [
16+
{
17+
"type": "command",
18+
"key": "Git",
19+
"text": "git version",
20+
"format": "{~12}" // cut the first 12 characters
21+
}
22+
]
23+
}
24+
```
25+
- type: textarea
26+
attributes:
27+
label: Description
28+
description: A clear and concise description of what the feature is.
29+
validations:
30+
required: true
31+
- type: textarea
32+
attributes:
33+
label: Motivation
34+
description: Why do you want this feature? Why doesn't `Command` module suffice for you?
35+
validations:
36+
required: true

.github/ISSUE_TEMPLATE/logo_request.md

Lines changed: 0 additions & 23 deletions
This file was deleted.
Lines changed: 38 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,38 @@
1+
name: Logo Request
2+
description: Request a new ASCII logo for your favorite distro
3+
title: "[LOGO] "
4+
labels: ["logo request"]
5+
body:
6+
- type: markdown
7+
attributes:
8+
value: |
9+
Tip: A logo can be displayed by fastfetch without getting into fastfetch's official repo.
10+
For highly customized logo for personal use, it's recommended to keep it locally.
11+
Please refer to https://github.com/fastfetch-cli/fastfetch/wiki/Migrate-Neofetch-Logo-To-Fastfetch
12+
- type: textarea
13+
attributes:
14+
label: OS
15+
description: Paste content of `/etc/os-release` and `/etc/lsb-release` here. If none of these files exist, describe a way to identify the distro
16+
placeholder: cat /etc/os-release
17+
validations:
18+
required: true
19+
- type: textarea
20+
attributes:
21+
label: ASCII Art
22+
description: An ASCII logo should not take up too much space (smaller than 50x20 characters). Please also include the color codes if not available in `os-release`
23+
placeholder: Paste ASCII art here
24+
validations:
25+
required: true
26+
- type: input
27+
attributes:
28+
label: Original Image
29+
description: If the ASCII art is based on an image, please provide a link to the original image
30+
placeholder: Image URL or distro website URL
31+
- type: checkboxes
32+
attributes:
33+
label: Checklist
34+
options:
35+
- label: The ASCII art is smaller than 50x20 characters (width x height)
36+
required: true
37+
- label: The ASCII art contains color codes, or the color codes are available in `os-release`
38+
required: true

0 commit comments

Comments
 (0)