From e38c90f938124c5b875cdf41d06ddd0396076513 Mon Sep 17 00:00:00 2001 From: Dylan Date: Tue, 12 Apr 2016 10:21:11 +1000 Subject: [PATCH] Add verbose comment --- .github/ISSUE_TEMPLATE.md | 26 ++++++++++++++++++++++++++ neofetch | 1 + 2 files changed, 27 insertions(+) create mode 100644 .github/ISSUE_TEMPLATE.md diff --git a/.github/ISSUE_TEMPLATE.md b/.github/ISSUE_TEMPLATE.md new file mode 100644 index 00000000..9b5e4a07 --- /dev/null +++ b/.github/ISSUE_TEMPLATE.md @@ -0,0 +1,26 @@ +### Description + +Text here + + +### Neofetch version + +- + + +### Verbose log + +Add `set -x` to the second line of the script, the script should look like this: + +```sh +#!/usr/bin/env bash +set -x +# vim: fdm=marker:noai:ts=4:sw=4 +# +# Neofetch info about your system +# https://github.com/dylanaraps/neofetch +``` + +Run neofetch + +- diff --git a/neofetch b/neofetch index 890714c8..bd8ac779 100755 --- a/neofetch +++ b/neofetch @@ -1,4 +1,5 @@ #!/usr/bin/env bash +# set -x # vim: fdm=marker:noai:ts=4:sw=4 # # Neofetch info about your system