Merge remote-tracking branch 'github/next' into next

This commit is contained in:
Dave Davenport 2023-06-12 19:08:03 +02:00
commit 96dabb4dd6
3 changed files with 4 additions and 1 deletions

View file

@ -55,6 +55,8 @@ konsole
alacritty
.IP \(bu 2
kitty
.IP \(bu 2
wezterm
.RE

View file

@ -35,6 +35,7 @@ It tries to start one of the following (in that order):
* konsole
* alacritty
* kitty
* wezterm
## SEE ALSO

View file

@ -9,7 +9,7 @@
# We welcome patches that add distribution-specific mechanisms to find the
# preferred terminal emulator. On Debian, there is the x-terminal-emulator
# symlink for example.
for terminal in $TERMINAL x-terminal-emulator urxvt rxvt st terminology qterminal Eterm aterm uxterm xterm roxterm xfce4-terminal.wrapper mate-terminal lxterminal konsole alacritty kitty; do
for terminal in $TERMINAL x-terminal-emulator urxvt rxvt st terminology qterminal Eterm aterm uxterm xterm roxterm xfce4-terminal.wrapper mate-terminal lxterminal konsole alacritty kitty wezterm; do
if command -v $terminal >/dev/null 2>&1; then
exec $terminal "$@"
fi