@eshanized updated the repository 🎉 !!!

This commit is contained in:
eshanized
2024-04-16 18:22:44 +05:30
parent e8582f4212
commit cd0fc892aa

View File

@@ -61,3 +61,12 @@ MATE)
terminal=mate-terminal
;;
esac
if [ -z "$terminal" ] || ! command -v "$terminal" &>/dev/null; then
for i in ${term_order[@]}; do
if command -v "$i" &>/dev/null; then
terminal="$i"
break
fi
done
fi