summaryrefslogtreecommitdiffstats
path: root/mime-apps/mime-apps-spec.xml
blob: ad8b00896c4c5fc4ec8e91fc54e54d83fd77132f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
<!DOCTYPE article PUBLIC "-//OASIS//DTD DocBook XML V4.1.2//EN"
"http://www.oasis-open.org/docbook/xml/4.1.2/docbookx.dtd" [
]>
<article id="index">
<articleinfo>
   <authorgroup>
    <corpauthor>
      <ulink url="http://www.freedesktop.org">Cross Desktop Group</ulink>
    </corpauthor>
    <author>
        <firstname>David</firstname>
        <surname>Faure</surname>
        <affiliation>
          <address>
            <email>faure@kde.org</email>
          </address>
        </affiliation>
    </author>
    </authorgroup>
  <title>Association between MIME types and applications</title>
  <pubdate>2 April 2014</pubdate>
  <releaseinfo>1.0</releaseinfo>
</articleinfo>
<sect1>
  <title>Introduction</title>
  <para>The freedesktop.org <ulink url="http://www.freedesktop.org/wiki/Specifications/shared-mime-info-spec/">Shared MIME database</ulink> provides a single way to store static information about MIME types and rules for determining a type.</para>
  <para>The freedesktop.org <ulink url="http://www.freedesktop.org/wiki/Specifications/desktop-entry-spec/">Desktop Entry specification</ulink> allows applications to announce which MIME types they support.</para>
  <para>This specification solves the remaining issues: which application should open a file by default, how to let the user change the default application, and how to let the user add or remove associations between applications and mimetypes.</para>
</sect1>
<sect1 id="file">
  <title>File name and location</title>
  <para>Users, system administrators, application vendors et distributions can change associations between applications and mimetypes by writing into a file called mimeapps.list.</para>
  <para>The lookup order for this file is as follows:</para>
  <informaltable>
    <tgroup cols="2">
      <tbody>
        <row>
          <entry>$XDG_CONFIG_HOME/$desktop-mimeapps.list</entry><entry>user overrides, desktop-specific (for advanced users)</entry>
        </row><row>
          <entry>$XDG_CONFIG_HOME/mimeapps.list</entry><entry>user overrides (recommended location for user configuration GUIs)</entry>
        </row><row>
          <entry>$XDG_CONFIG_DIRS/$desktop-mimeapps.list</entry><entry>sysadmin and ISV overrides, desktop-specific</entry>
        </row><row>
          <entry>$XDG_CONFIG_DIRS/mimeapps.list</entry><entry>sysadmin and ISV overrides</entry>
        </row><row>
          <entry>$XDG_DATA_HOME/applications/$desktop-mimeapps.list</entry><entry>for completeness, deprecated, desktop-specific</entry>
        </row><row>
          <entry>$XDG_DATA_HOME/applications/mimeapps.list</entry><entry>for compatibility, deprecated</entry>
        </row><row>
          <entry>$XDG_DATA_DIRS/applications/$desktop-mimeapps.list</entry><entry>distribution-provided defaults, desktop-specific</entry>
        </row><row>
          <entry>$XDG_DATA_DIRS/applications/mimeapps.list</entry><entry>distribution-provided defaults</entry>
        </row>
      </tbody>
    </tgroup>
  </informaltable>
  <para>In this table, $desktop is one of the names of the current desktop, lowercase (for instance, kde, gnome, xfce, etc.)</para>
  <para>This is determined from the environment variable $XDG_CURRENT_DESKTOP, which is a colon-separated list of names that the current desktop is known as.
    The $desktop variable should be each of these values in turn.</para>
  <para>All of the above files are referred to as "mimeapps.list" in the rest of this specification, for simplicity.</para>
</sect1>
<sect1 id="default">
  <title>Default Application</title>
  <para>Indicating the default application for a given mimetype is done by writing into the group [Default Applications] in the file mimeapps.list.</para>
  <para>The [Default Applications] group indicates the preferred application for a given mimetype. This is for instance the one that will be started when left-clicking on a file in a file manager. If the application is no longer installed, the next application in the list is used.</para>
  <para>This example ensures that the application default1.desktop will be used for mimetype1, if it's installed, and otherwise default2.desktop if it's installed:
    <programlisting>
[Default Applications]
mimetype1=default1.desktop;default2.desktop</programlisting>
  </para>
  <para>The value is a semicolon-separated list of desktop file IDs (as defined in the desktop entry spec).</para>
  <para>In the absence of such an entry, the next mimeapps.list is checked. Once all levels have been checked, if no entry could be found, the implementations can pick any of the .desktop files associated with the mimetype, taking into account added and removed associations as per the next section.</para>
</sect1>
<sect1 id="associations">
  <title>Adding/removing associations</title>
  <para>Adding and removing associations between mimetypes and applications is done with the following syntax in the mimeapps.list file:
    <programlisting>
[Added Associations]
mimetype1=foo1.desktop;foo2.desktop;foo3.desktop
mimetype2=foo4.desktop
[Removed Associations]
mimetype1=foo5.desktop</programlisting>
  </para>
  <para>The [Added Associations] group defines additional associations of applications with mimetypes, as if the .desktop file was listing this mimetype in the first place.</para>
  <para>The entries in [Default Applications] should also be considered to add an association between application and mimetype in the same manner.</para>
  <para>The [Removed Associations] group removes associations of applications with mimetypes, as if the .desktop file was NOT listing this mimetype in the first place.</para>
</sect1>
<sect1 id="ordering">
  <title>Application ordering</title>
  <para>The suggested algorithm for listing the applications associated to a given mimetype is:</para>
   <itemizedlist>
     <listitem><para>add any "Default Applications" and then "Added Associations" in the first mimeapps.list</para></listitem>
     <listitem><para>make a blacklist with the "Removed Associations" in the first mimeapps.list</para></listitem>
     <listitem><para>add any "Default Applications" and then the "Added Associations" in the second mimeapps.list, except those in the current blacklist</para></listitem>
     <listitem><para>append to the blacklist the "Removed Associations" in the second mimeapps.list</para></listitem>
     <listitem><para>repeat the last two steps for all subsequent mimeapps.list files</para></listitem>
     <listitem><para>finish by adding the mimetypes listed in the .desktop file, except those in the blacklist</para></listitem>
   </itemizedlist>
</sect1>

</article>