1
0
Fork 0
mirror of https://github.com/davatorium/rofi.git synced 2024-11-18 13:54:36 -05:00

Call bash instead of sh for rofi-sensible-terminal

In the script you use 'command -v' which AFAIK is a bash built-in and
thus not available on all shells. Although /bin/sh links to /bin/bash on
many systems it does not on every system. So it is possible that it does
not work.
This commit is contained in:
Michael Vetter 2015-08-04 11:53:37 +02:00
parent 1ca7141621
commit 1c52aafc3c

View file

@ -1,4 +1,4 @@
#!/bin/sh
#!/bin/bash
#
# This code is released in public domain by Han Boetes <han@mijncomputer.nl>
# Updated by Dave Davenport <qball@gmpclient.org>