#!/bin/sh

set -xe

terms="alacritty st xterm"

for term in ${terms}; do
	command -v "${term}" && exec "${term}"
done