Add wezterm to rofi-sensible-terminal (#1838)

This commit is contained in:
Yuta Katayama 2023-05-05 01:45:33 +09:00 committed by GitHub
parent 21ac2d1930
commit b341ed01d2
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
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