]> git.madduck.net Git - etc/awesome.git/blob - ISSUE_TEMPLATE.md

madduck's git repository

Every one of the projects in this repository is available at the canonical URL git://git.madduck.net/madduck/pub/<projectpath> — see each project's metadata for the exact URL.

All patches and comments are welcome. Please squash your changes to logical commits before using git-format-patch and git-send-email to patches@git.madduck.net. If you'd read over the Git project's submission guidelines and adhered to them, I'd be especially grateful.

SSH access, as well as push access can be individually arranged.

If you use my repositories frequently, consider adding the following snippet to ~/.gitconfig and using the third clone URL listed for each project:

[url "git://git.madduck.net/madduck/"]
  insteadOf = madduck:

Configurable battery thresholds for tpbat
[etc/awesome.git] / ISSUE_TEMPLATE.md
1 # Please, read me!
2
3 So that I can help you quickly and without having to redirect you here.
4
5 # If you have an issue
6
7 **Please read the [wiki](https://github.com/lcpz/lain/wiki) and search the [Issues section](https://github.com/lcpz/lain/issues) first.**
8
9 If you can't find a solution there, then go ahead and provide:
10
11 * output of `awesome -v` and `lua -v`
12 * expected behavior and actual behavior
13 * steps to reproduce the problem
14 * X error log
15
16 # How to provide X error log
17
18 There are two ways:
19
20 * (Physically) Restart X like this:
21   ```shell
22   startx -- -keeptty -nolisten tcp > $HOME/.xorg.log 2>&1
23   ```
24   the error log will be output into `$HOME/.xorg.log`.
25
26 * (Virtually) Use [Xephyr](https://wikipedia.org/wiki/Xephyr):
27   ```shell
28   # set screen size as you like
29   Xephyr :1 -screen 1280x800 2> stdout.txt & DISPLAY=:1 awesome
30   ```
31   the error log will be output in the file `stdout.txt`.
32
33 Before reporting, read the log and see if you can solve it yourself.