Closed LangLangBart closed 1 year ago
python
is not installed by default on arch linux.
OK, I will leave the current solution using 'python' and wait to see if any feedback comes.
Alternatively, a switch to something similar to this could also work:
case "$(uname -s)" in
Darwin) open "$url" ;;
Linux) xdg-open "$url" ;;
*) start "$url" ;;
esac
description
open
works only reliably undermacOS
, a cross-platform solution could bepython -m webbrowser
TODO
python
be checked for existence