mirror of
https://github.com/oSoWoSo/DistroHopper.git
synced 2024-08-14 22:46:53 +00:00
19 lines
401 B
Bash
Executable file
19 lines
401 B
Bash
Executable file
#!/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
|