diff options
Diffstat (limited to 'www-client/conkeror/files')
-rw-r--r-- | www-client/conkeror/files/conkeror.desktop | 14 | ||||
-rw-r--r-- | www-client/conkeror/files/conkeror.sh | 14 |
2 files changed, 0 insertions, 28 deletions
diff --git a/www-client/conkeror/files/conkeror.desktop b/www-client/conkeror/files/conkeror.desktop deleted file mode 100644 index fcf6123c9d44..000000000000 --- a/www-client/conkeror/files/conkeror.desktop +++ /dev/null @@ -1,14 +0,0 @@ -[Desktop Entry] -Type=Application -Version=1.0 -Name=Conkeror -GenericName=Web Browser -Comment=Conkeror is a Mozilla-based web browser whose design is inspired by GNU Emacs -Icon=conkeror -TryExec=/usr/bin/conkeror -Exec=/usr/bin/conkeror %u -Terminal=false -Categories=Network;WebBrowser; -MimeType=text/html;text/xml; -StartupNotify=true -StartupWMClass=Conkeror diff --git a/www-client/conkeror/files/conkeror.sh b/www-client/conkeror/files/conkeror.sh deleted file mode 100644 index 9b46d5bb0c07..000000000000 --- a/www-client/conkeror/files/conkeror.sh +++ /dev/null @@ -1,14 +0,0 @@ -#!/bin/bash -# Wrapper script for conkeror - -for cmd in firefox firefox-bin; do - xr=$(type -p ${cmd}) - if [[ -n ${xr} ]]; then - : ${MOZ_PLUGIN_PATH:=/usr/lib/nsbrowser/plugins} #497070 - export MOZ_PLUGIN_PATH - exec "${xr}" -app /usr/share/conkeror/application.ini "$@" - fi -done - -echo "$0: firefox required, but not found." >&2 -exit 1 |