Skip to content

Commit

Permalink
Chore: update issue template
Browse files Browse the repository at this point in the history
  • Loading branch information
CarterLi committed Jun 18, 2023
1 parent b8d0175 commit ea1e1b2
Showing 1 changed file with 35 additions and 9 deletions.
44 changes: 35 additions & 9 deletions .github/ISSUE_TEMPLATE/bug_report.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,26 +8,30 @@ assignees: ''
---

# General description of bug:
<!-- What was the result? What is the expection? Did it work before? -->

[ ] The issue still occurs in [the latest dev build](https://github.com/fastfetch-cli/fastfetch/actions/)

# Often helpful questions:
* Does the issue occur across multiple terminal emulators? [Y/N]
* Does the issue occur across multiple shells? (bash, zsh, fish, etc) [Y/N]
# Often helpful information:

Output of `fastfetch --version`:
```
//paste here
```

Output of `fastfetch --load-config devinfo`:
The content of the configuration file you use (if any)
```
//paste here
```

Output of `fastfetch --load-config devinfo-verbose`:
Output of `fastfetch --load-config devinfo-verbose --show-errors --multithreading false --disable-linewrap false`:
<!--
Note that this output will contain you public IP. If it is not relevant for the issue, feel free to remove it before uploading.
If you get the following error: `Error: couldn't find config: [...]`, copy the files in [presets](../../presets/) to `/usr/share/fastfetch/presets/` or `~/.local/share/fastfetch/presets/`.
If this isn't possible (or too much work) for you, post the output of `fastfetch --show-errors --multithreading false --disable-linewrap false`.
-->

```
//paste here
```
Expand All @@ -37,7 +41,29 @@ Output of `fastfetch --list-features`:
//paste here
```

<!--
If you get the following error: `Error: couldn't find config: [...]`, copy the files in [presets](../../presets/) to `/usr/share/fastfetch/presets/` or `~/.local/share/fastfetch/presets/`.
If this isn't possible (or too much work) for you, post the output of `fastfetch --show-errors --multithreading false --disable-linewrap false`.
-->
## If fastfatch crashed

Paste the stacktrace here. You may get it with:

```
$ gdb /path/to/fastfetch
$ run
$ bt
```

If you are able to identify which module crashed, the strace can be helpful too

```
$ strace /path/to/fastfetch --multithreading false --structure {MODULE} --pipe
```

If you cannot do the instructions above, please upload the core dump file:

## If my image logo didn't show / work

<!-- Please make sure the terminal does support the image protocol you used. Note Gnome terminal doesn't support any image protocols -->

* The image protocol you used:
* The terminal you used:
* Upload the image file here, or paste the image URL:
* Does it work with `--logo-width {WIDTH} --logo-height {HEIGHT}`?

0 comments on commit ea1e1b2

Please sign in to comment.