conkeror 223 B

1234567891011121314
  1. #!/bin/sh
  2. INI=$HOME/src/conkeror/application.ini
  3. # Use icecat on GuixSD.
  4. if [ -d "/run/current-system" ]; then
  5. PROG='icecat --app'
  6. else
  7. # PROG='xulrunner'
  8. PROG='firefox --app'
  9. fi
  10. $PROG $INI "$@" &> /dev/null