This commit is contained in:
zenobit 2023-03-24 02:54:49 +01:00
parent cdf14d114c
commit 57261c2f53
7 changed files with 0 additions and 0 deletions

19
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