Change exit code to "file not found"

This commit is contained in:
Jafner 2021-10-24 19:51:46 -07:00
parent 0608ebea8f
commit 4decb8d6c9

View File

@ -34,7 +34,7 @@ initialize(){
echo "Checking for xdotool" echo "Checking for xdotool"
if ! hash xdotool &> /dev/null; then if ! hash xdotool &> /dev/null; then
echo "xdotool could not be found, exiting" echo "xdotool could not be found, exiting"
exit exit 2
else else
echo "xdotool found" echo "xdotool found"
fi fi