mirror of
https://github.com/i3/i3.git
synced 2026-02-26 03:05:26 +00:00
The former two provide fallbacks in case $PAGER or $EDITOR is not set (which
might be more common than you think, because they have to be set in
~/.xsession, not in the shell configuration!) while the latter tries to launch
a terminal emulator. The scripts are most prominently used in i3-nagbar, which
alerts the user when the configuration is broken for some reason. Also,
i3-sensible-terminal is used in the default configuration.
This commit does not rely on the shell supporting ${PAGER:-less} anymore, which
is not the case for 'fish'.
15 lines
552 B
Bash
Executable File
15 lines
552 B
Bash
Executable File
#!/bin/sh
|
|
# This script tries to exec an editor by trying some known editors if $EDITOR is
|
|
# not set.
|
|
#
|
|
# Distributions/packagers can enhance this script with a
|
|
# distribution-specific mechanism to find the preferred pager.
|
|
which $VISUAL >/dev/null && exec $VISUAL "$@"
|
|
which $EDITOR >/dev/null && exec $EDITOR "$@"
|
|
|
|
# Hopefully one of these is installed (no flamewars about preference please!):
|
|
which nano >/dev/null && exec nano "$@"
|
|
which vim >/dev/null && exec vim "$@"
|
|
which vi >/dev/null && exec vi "$@"
|
|
which emacs >/dev/null && exec emacs "$@"
|