]> git.sur5r.net Git - i3/i3/commitdiff
Use command -v (built-in) instead of which(1) (Thanks val)
authorMichael Stapelberg <michael@stapelberg.de>
Thu, 23 Oct 2014 21:05:01 +0000 (23:05 +0200)
committerMichael Stapelberg <michael@stapelberg.de>
Thu, 23 Oct 2014 21:05:01 +0000 (23:05 +0200)
fixes #1380

i3-sensible-editor
i3-sensible-pager
i3-sensible-terminal

index b3afceb7fa691ce3df5b8eeff19c97da48bdb4d3..4e7456b705129a9ea022d073efe51b6e21946abb 100755 (executable)
@@ -10,7 +10,7 @@
 
 # Hopefully one of these is installed (no flamewars about preference please!):
 for editor in $VISUAL $EDITOR nano vim vi emacs pico qe mg jed gedit mc-edit; do
-    if which $editor > /dev/null 2>&1; then
+    if command -v $editor > /dev/null 2>&1; then
         exec $editor "$@"
     fi
 done
index df463251dffea61737ba9511e607f9cebb972d3b..5ad786062405a9c4a571ca6a1f54cf60ee366ade 100755 (executable)
@@ -12,7 +12,7 @@
 # We don't use 'more' because it will exit if the file is too short.
 # Worst case scenario we'll open the file in your editor.
 for pager in $PAGER less most w3m i3-sensible-editor; do
-    if which $pager > /dev/null 2>&1; then
+    if command -v $pager > /dev/null 2>&1; then
         exec $pager "$@"
     fi
 done
index fddefae10048f0f546e4b0404e32caeae0c7d1f4..485fc16dce4869633f87044be07531e2ec07c505 100755 (executable)
@@ -9,7 +9,7 @@
 # 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 xfce4-terminal; do
-    if which $terminal > /dev/null 2>&1; then
+    if command -v $terminal > /dev/null 2>&1; then
         exec $terminal "$@"
     fi
 done