debian
docs
i3-config-wizard
i3-dump-log
i3-input
i3-msg
i3-nagbar
i3bar
include
libi3
man
parser-specs
render-tree
src
testcases
tests
yajl-fallback
.gitignore
DEPENDS
GOALS
LICENSE
Makefile
PACKAGE-MAINTAINER
RELEASE-NOTES-4.0
RELEASE-NOTES-4.0.1
RELEASE-NOTES-4.0.2
RELEASE-NOTES-4.1
RELEASE-NOTES-4.1.1
RELEASE-NOTES-4.1.2
common.mk
dump-asy.pl
generate-command-parser.pl
gtk-tree-watch.pl
i3-migrate-config-to-v4
i3-sensible-editor
i3-sensible-pager
i3-sensible-terminal
i3-wsbar
i3.applications.desktop
i3.config
i3.config.keycodes
i3.welcome
i3.xsession.desktop
logo.svg
pseudo-doc.doxygen
show-download-count.sh
16 lines
565 B
Bash
Executable File
16 lines
565 B
Bash
Executable File
#!/bin/sh
|
|
#
|
|
# This code is released in public domain by Han Boetes <han@mijncomputer.nl>
|
|
#
|
|
# This script tries to exec a terminal emulator by trying some known terminal
|
|
# emulators.
|
|
#
|
|
# Distributions/packagers should enhance this script with a
|
|
# distribution-specific mechanism to find the preferred terminal emulator. On
|
|
# Debian, there is the x-terminal-emulator symlink for example.
|
|
for terminal in $TERMINAL urxvt rxvt terminator Eterm aterm xterm gnome-terminal roxterm; do
|
|
if which $terminal > /dev/null 2>&1; then
|
|
exec $terminal "$@"
|
|
fi
|
|
done
|