fixed typos, labeled importance of deps
This commit is contained in:
parent
e6c4f4a8d2
commit
a9fef3fc6a
22
install.sh
22
install.sh
@ -76,34 +76,34 @@ echo "Checking dependencies...";echo
|
|||||||
checkYoutubedl
|
checkYoutubedl
|
||||||
if [ $? -eq "1" ];then
|
if [ $? -eq "1" ];then
|
||||||
YSTATUS=0
|
YSTATUS=0
|
||||||
echo -e "is youtube-dl installed?: \e[31m no \033[0m"
|
echo -e "is youtube-dl installed?: \e[31m no \033[0m (Required)"
|
||||||
else
|
else
|
||||||
YSTATUS=1
|
YSTATUS=1
|
||||||
echo -e "is youtube-dl installed?: \e[32m yes \033[0m"
|
echo -e "is youtube-dl installed?: \e[32m yes \033[0m (Required)"
|
||||||
fi
|
fi
|
||||||
|
|
||||||
checkFfmpeg
|
checkFfmpeg
|
||||||
if [ $? -eq "1" ];then
|
if [ $? -eq "1" ];then
|
||||||
FSTATUS=0
|
FSTATUS=0
|
||||||
echo -e "is ffmpeg installed?: \e[31m no \033[0m"
|
echo -e "is ffmpeg installed?: \e[31m no \033[0m (Required)"
|
||||||
else
|
else
|
||||||
FSTATUS=1
|
FSTATUS=1
|
||||||
echo -e "is ffmpeg installed?: \e[32m yes \033[0m"
|
echo -e "is ffmpeg installed?: \e[32m yes \033[0m (Required)"
|
||||||
fi
|
fi
|
||||||
|
|
||||||
checkZenity
|
checkZenity
|
||||||
if [ $? -eq "1" ];then
|
if [ $? -eq "1" ];then
|
||||||
ZSTATUS=0
|
ZSTATUS=0
|
||||||
echo -e "is zenity installed?: \e[31m no \033[0m"
|
echo -e "is zenity installed?: \e[31m no \033[0m (Required)"
|
||||||
else
|
else
|
||||||
ZSTATUS=1
|
ZSTATUS=1
|
||||||
echo -e "is zenity installed?: \e[32m yes \033[0m"
|
echo -e "is zenity installed?: \e[32m yes \033[0m (Required)"
|
||||||
fi
|
fi
|
||||||
|
|
||||||
checkYad
|
checkYad
|
||||||
if [ $? -eq "1" ];then
|
if [ $? -eq "1" ];then
|
||||||
YASTATUS=0
|
YASTATUS=0
|
||||||
echo -e "is yad install?: \e[31m no \033[0m"
|
echo -e "is yad installed?: \e[31m no \033[0m (Optional)"
|
||||||
else
|
else
|
||||||
YASTATUS=1
|
YASTATUS=1
|
||||||
echo -e "is yad installed?: \e[32m yes \033[0m (Optional)"
|
echo -e "is yad installed?: \e[32m yes \033[0m (Optional)"
|
||||||
@ -112,20 +112,20 @@ fi
|
|||||||
checkXdg
|
checkXdg
|
||||||
if [ $? -eq "1" ];then
|
if [ $? -eq "1" ];then
|
||||||
XSTATUS=0
|
XSTATUS=0
|
||||||
echo -e "is xdg-utils install?: \e[31m no \033[0m"
|
echo -e "is xdg-utils installed?: \e[31m no \033[0m (Required)"
|
||||||
else
|
else
|
||||||
XSTATUS=1
|
XSTATUS=1
|
||||||
echo -e "is xdg-utils installed?: \e[32m yes \033[0m"
|
echo -e "is xdg-utils installed?: \e[32m yes \033[0m (Required)"
|
||||||
fi
|
fi
|
||||||
|
|
||||||
|
|
||||||
checkNotify
|
checkNotify
|
||||||
if [ $? -eq "1" ];then
|
if [ $? -eq "1" ];then
|
||||||
NSTATUS=0
|
NSTATUS=0
|
||||||
echo -e "is libnotify install?: \e[31m no \033[0m"
|
echo -e "is libnotify installed?: \e[31m no \033[0m (Optional)"
|
||||||
else
|
else
|
||||||
NSTATUS=1
|
NSTATUS=1
|
||||||
echo -e "is libnotify installed?: \e[32m yes \033[0m"
|
echo -e "is libnotify installed?: \e[32m yes \033[0m (Optional)"
|
||||||
fi
|
fi
|
||||||
|
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user