From: Mihai Prica Date: Fri, 30 Aug 2013 13:47:36 +0000 (+0300) Subject: builder: register html links and files with Midori X-Git-Tag: lucaceresoli/bug-15201-perf-libtraceevent-missing~36166 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=1177aee9a6761a6a46a6213f7c4d35827ea54022;p=thirdparty%2Fopenembedded%2Fopenembedded-core-contrib.git builder: register html links and files with Midori HTML files and links will open in a tab in Midori. [YOCTO #3506] Signed-off-by: Mihai Prica Signed-off-by: Richard Purdie --- diff --git a/meta/recipes-graphics/builder/files/builder_hob_start.sh b/meta/recipes-graphics/builder/files/builder_hob_start.sh index bef6878ec2e..be3f91108ab 100644 --- a/meta/recipes-graphics/builder/files/builder_hob_start.sh +++ b/meta/recipes-graphics/builder/files/builder_hob_start.sh @@ -12,10 +12,16 @@ export GIT_PROXY_COMMAND=/home/builder/poky/scripts/oe-git-proxy #start pcmanfm in daemon mode to allow asynchronous launch pcmanfm -d& -#register folders to open with PCManFM filemanager +#register handlers for some file types if [ ! -d /home/builder/.local/share/applications ]; then mkdir -p /home/builder/.local/share/applications/ + #register folders to open with PCManFM filemanager xdg-mime default pcmanfm.desktop inode/directory + + #register html links and files with Midori + xdg-mime default midori.desktop x-scheme-handler/http + xdg-mime default midori.desktop x-scheme-handler/https + xdg-mime default midori.desktop text/html fi cd /home/builder/poky