initial commit

This commit is contained in:
zenobit 2023-03-10 06:47:49 +01:00
parent 25069872e5
commit b8464964ce
54 changed files with 7530 additions and 891 deletions

19
config/check.sh Executable file
View file

@ -0,0 +1,19 @@
#!/bin/bash
# DEBUG mod
#bash -x quickyad 2>&1 | tee output.log
# YAD gui script for excellent quickemu
#TODO Download Icons
#TODO Add homepages to right click
echo "Running..."
# dependencies checks
if ! command -v yad >/dev/null 2>&1; then
echo "You are missing yad..." >&2
exit 1
fi
if ! command -v quickemu >/dev/null 2>&1; then
echo "You are missing quickemu..." >&2
exit 1
fi