Fix issue form template

This commit is contained in:
clsty 2025-02-09 14:15:11 +08:00
parent 0b62cf3f42
commit 49fd0a8ccf
2 changed files with 16 additions and 8 deletions

View file

@ -18,7 +18,7 @@ body:
attributes:
label: Quick diagnose info
description: "Run `./diagnose` inside the repo, and paste the result below."
value: "\n<!-- Run `./diagnose` inside the repo, and paste the result below. -->\n<details><summary>Quick diagnose</summary>\n\n```\n(Paste your diagnose result here!)\n```\n\n</details>"
value: "<details><summary>Quick diagnose</summary>\n\n```\n<!-- Run `./diagnose` inside the repo, and paste the result here. -->\n```\n\n</details>"
validations:
required: true
@ -34,6 +34,6 @@ body:
- type: textarea
attributes:
label: The issue
value: "\n(Describe your issue here!)\n\n<!-- ↓↓ DO NOT IGNORE THIS. NO HELP CAN BE GIVEN WITHOUT SUFFICIENT LOGS -->\n<details><summary>Logs</summary>\n\n```\n(Put your log content here!)\n```\n\n</details>"
value: "\n<!-- Describe your issue here! -->\n\n<details><summary>Logs</summary>\n\n```\n<!-- Put your log content here!-->\n```\n\n</details>"
validations:
required: true

View file

@ -29,6 +29,11 @@ ii_exec() {
ii_check_distro() {
lsb_release -a || cat /etc/os-release || cat /etc/lsb-release
}
ii_check_venv() {
source $(eval echo $ILLOGICAL_IMPULSE_VIRTUAL_ENV)/bin/activate
which gradience-cli
deactivate
}
e "Checking git repo info"
x git remote get-url origin
@ -49,17 +54,20 @@ e "Checking directories/files"
x ls -l $ILLOGICAL_IMPULSE_VIRTUAL_ENV/bin/gradience-cli
x ls $XDG_DATA_HOME/glib-2.0/schemas
x ls $XDG_DATA_HOME/gradience
x cat ~/.config/ags/
#x cat ~/.config/ags/
e "Checking command existence"
commands=(pacman zypper apt dnf yum Hyprland)
for i in "${commands[@]}";do x command -v $i;done
#e "Checking command existence"
#commands=(yay pacman zypper apt dnf yum)
#commands+=(ags swww)
#commands+=(Hyprland hypr{ctl,idle,lock,picker})
#commands+=(uv)
#for i in "${commands[@]}";do x command -v $i;done
e "Checking versions"
x Hyprland --version
x ags --version
#e "Checking Color Generators"
#x ~/.config/ags/scripts/color_generation/applycolor.sh
e "Checking python venv"
e "Finished. Output saved as \"dianose.log\"."