xdg-utils

xdg-utils provides the official utilities for managing XDG MIME Applications.

Installation

Install the xdg-utils package.

Usage

Environment variables

xdg-utils attempts to integrate with your desktop environment by invoking the specialized programs it provides, where applicable. The evaluation of the current environment is as follows :

  • If the standardized XDG_CURRENT_DESKTOP environment variable is set to a recognized desktop environment, the corresponding value is used.
  • If any classic fallbacks or environment-specific variables, such as KDE's , are present, then the corresponding value is used.
  • If the legacy DESKTOP_SESSION environment variable is set to a recognized desktop environment, the corresponding value is used.

During this process, if any match is found, the DE variable is internally overwritten with the detected desktop environment's normalized value. Hence, is both a legacy environment variable, and an internal state variable for xdg-utils. As an example, if is , xdg-utils will internally set to kde. If no match is found, then any pre-existing value will be used, in such a way that is equivalent to being unset, and having . This implementation detail is worth noting because it has the consequence that a pre-set is ignored if a desktop environment is otherwise detected.

Values of the variables that xdg-utils recognizes are:

Desktop Environment
1generic
Cinnamon,
DeepinDeepin, , 1
Enlightenment1
GNOME2
GNOME Flashback, GNOME-Flashback:GNOME2
KDE Plasmakde
LXDElxde
LXQt
MATE
Xfce, ,
  1. This is not an environment registered with freedesktop.org.
  2. GNOME variations, including the GNOME Classic mode, are all regarded as the same by xdg-utils.

Note that this is only a list of what the scripts provided by xdg-utils are capable of detecting. The scripts will still perform generic, environment-agnostic actions under the following conditions:

  • The generic routine was asked for, via XDG_CURRENT_DESKTOP=X-Generic or DE=generic.
  • Environment detection failed. All relevant environment variables were unrecognized or unset, and the classic fallbacks did not reveal anything.
  • Environment-specific actions were performed, but failed, e.g. due to a missing program.

xdg-mime

xdg-mime(1) is a script for directly querying and modifying default MIME applications. It is used within other scripts, such as xdg-open, and is also a useful troubleshooting tool.

Determine a file's MIME type:

$ xdg-mime query filetype photo.jpeg
image/jpeg

Determine the default application for a MIME type:

$ xdg-mime query default image/jpeg
gimp.desktop

Change the default application for a MIME type:

$ xdg-mime default feh.desktop image/jpeg

Debug default application for MIME type:

$ env XDG_UTILS_DEBUG_LEVEL=10  xdg-mime query default text/html
Checking /home/user/.config/mimeapps.list
Checking /home/user/.local/share/applications/defaults.list and /home/user/.local/share/applications/mimeinfo.cache
Checking /usr/local/share/applications/defaults.list and /usr/local/share/applications/mimeinfo.cache
Checking /usr/share/applications/defaults.list and /usr/share/applications/mimeinfo.cache
qutebrowser.desktop

When it is necessary to determine the MIME type of a file, xdg-mime attempts to use the right program for the desktop environment:

Desktop EnvironmentProgramPackage
Cinnamon
GNOME
GNOME Flashback
LXDE
MATE
Xfce
Deepin rowspan="3" rowspan="3"
Enlightenment
LXQt
KDE Plasma

In the generic case, xdg-mime will:

  • Delegate to mimetype if present. Requires the package to be installed.
  • Delegate to if present.

xdg-open

xdg-open(1) is a resource opener used by many applications, implementing the XDG MIME Applications standard while integrating with the system's desktop environment as much as possible.

If a desktop environment was detected, its provided handler will be invoked :

Desktop EnvironmentProgramPackage
Cinnamon
GNOME
GNOME Flashback
MATE
Deepin
Enlightenmentenlightenment_openenlightenment
KDE Plasma1
LXDE
LXQt
Xfce2
  1. If is unset, then from will be used instead. KDE Plasma should set this variable under any condition, though.
  2. from will also be tried.

In the generic case, xdg-open will:

  • Query #xdg-mime for the default desktop entry associated with the resource, parse the desktop entry, and execute its command.
  • Delegate to run-mailcap if present. Requires the package to be installed.
  • Delegate to mimeopen if present. Requires the package to be installed.
Tip: To see which backend xdg-open will use, set XDG_UTILS_DEBUG_LEVEL=3.

Since xdg-mime relies on package to implement the XDG MIME Applications standard, if you are not using a desktop environment, you should either install , or consider a different resource opener.

xdg-settings

See xdg-settings(1).

Shortcut to open all web MIME types with a single application:

$ xdg-settings set default-web-browser firefox.desktop

Shortcut for setting the default application for a URL scheme:

$ xdg-settings set default-url-scheme-handler irc xchat.desktop

Tips and Tricks

URL scheme handlers

To set the default application for a URL scheme you may also need to change the default application for the MIME types:

$ xdg-mime default firefox.desktop x-scheme-handler/https x-scheme-handler/http
This article is issued from Archlinux. The text is licensed under Creative Commons - Attribution - Sharealike. Additional terms may apply for the media files.