summaryrefslogtreecommitdiff
blob: e00077b78f1eb71b3fd6c73a35b191536c0d2134 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
#!/bin/bash
# Wrapper script for conkeror

for cmd in firefox firefox-bin; do
    xr=$(type -p ${cmd})
    if [[ -n ${xr} ]]; then
 	exec "${xr}" -app /usr/share/conkeror/application.ini "$@"
    fi
done

echo "$0: firefox required, but not found." >&2
exit 1