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:
parent
1ca7141621
commit
1c52aafc3c
1 changed files with 1 additions and 1 deletions
|
@ -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>
|
||||
|
|
Loading…
Reference in a new issue