1
0
Fork 0
mirror of https://github.com/davatorium/rofi.git synced 2025-03-10 17:06:37 -04:00

[rofi-sensible-terminal] Add ghostty

fixes: #2110
This commit is contained in:
Qball Cow 2025-03-09 12:47:13 +01:00
parent 56fd08ed58
commit d948e33e68

View file

@ -9,10 +9,10 @@
# 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 wezterm; do
if command -v $terminal >/dev/null 2>&1; then
exec $terminal "$@"
fi
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 ghostty; do
if command -v $terminal >/dev/null 2>&1; then
exec $terminal "$@"
fi
done
rofi -e "Failed to find a suitable terminal"