Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add wezterm to rofi-sensible-terminal #1838

Merged
merged 1 commit into from
May 4, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions doc/rofi-sensible-terminal.1
Original file line number Diff line number Diff line change
Expand Up @@ -55,6 +55,8 @@ konsole
alacritty
.IP \(bu 2
kitty
.IP \(bu 2
wezterm

.RE

Expand Down
1 change: 1 addition & 0 deletions doc/rofi-sensible-terminal.1.markdown
Original file line number Diff line number Diff line change
Expand Up @@ -35,6 +35,7 @@ It tries to start one of the following (in that order):
* konsole
* alacritty
* kitty
* wezterm


## SEE ALSO
Expand Down
2 changes: 1 addition & 1 deletion script/rofi-sensible-terminal
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down