1
0
Fork 0
mirror of https://github.com/davatorium/rofi.git synced 2024-11-11 13:50:48 -05:00
rofi/script/rofi-sensible-terminal
Dave Davenport 2a93daec04 [Script] terminal
Remote terminator,termite as it does not work with stock rofi configuration as
it does not support the 'default' assumed commandline interface.

Fixes: #953
2019-04-20 18:54:28 +02:00

18 lines
752 B
Bash
Executable file

#!/usr/bin/env bash
#
# This code is released in public domain by Han Boetes <han@mijncomputer.nl>
# Updated by Dave Davenport <qball@gmpclient.org>
#
# This script tries to exec a terminal emulator by trying some known terminal
# emulators.
#
# 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 gnome-terminal roxterm xfce4-terminal mate-terminal lxterminal konsole alacritty kitty; do
if command -v $terminal > /dev/null 2>&1; then
exec $terminal "$@"
fi
done
rofi -e "Failed to find a suitable terminal"