Add wrappers for terminals to make scripts terminal-agnostic

Scripts launching a terminal will now require x-terminal-emulator in the
path. A symlink for it can be created using `select-term.zsh`.
This commit is contained in:
Alexander Gehrke 2021-07-05 13:11:42 +02:00
parent a367418433
commit 7ba3dba2bc
6 changed files with 53 additions and 35 deletions

View file

@ -1,5 +1,5 @@
#!/bin/zsh
#dep:alacritty tmux mosh
#dep:x-terminal-emulator tmux mosh
if [[ "$1" == "-S" ]]; then
shift
server=${1};
@ -8,4 +8,4 @@ else
server="qwerty";
fi
exec alacritty -t Weechat -e tmux new-session mosh "${server}" -- tmux attach "$@" -t weechat
exec x-terminal-emulator -t Weechat -e tmux new-session mosh "${server}" -- tmux attach "$@" -t weechat