Importing new ede-screen-lock tool, a wrapper around various locking engines. Also modified ede-help to

use 'command -v' instead of 'which', making it more portable.
This commit is contained in:
Sanel Zukan
2012-04-02 18:59:07 +00:00
parent e12c43e404
commit 405df2ef3c
4 changed files with 43 additions and 1 deletions

View File

@@ -48,7 +48,7 @@ url="file://$url"
# try to find browser
if [ "x$BROWSER" = "x" ]; then
for i in $browser_list; do
if which $i > /dev/null 2>&1; then
if command -v $i > /dev/null 2>&1; then
BROWSER="$i"
break;
fi