Add a script for launching the best terminal
This commit is contained in:
parent
06980d27f7
commit
add8074468
11
scripts/ewp-best-terminal
Executable file
11
scripts/ewp-best-terminal
Executable file
@ -0,0 +1,11 @@
|
||||
#! /bin/bash
|
||||
set -e
|
||||
|
||||
# Check for terminals in order of preference
|
||||
[[ $(command -v gnome-terminal) ]] && gnome-terminal -- $@; exit 0
|
||||
[[ $(command -v wt.exe) ]] && wt.exe -- $@; exit 0
|
||||
[[ $(command -v mintty) ]] && mintty -- $@; exit 0
|
||||
|
||||
# If we get here, fail
|
||||
echo "No terminal emulator found" >&2
|
||||
exit 1
|
Loading…
x
Reference in New Issue
Block a user