Variable FireOptions.opener

Delegate that will be used to open url if desktop file is link. To set static function use std.functional.toDelegate. If it's null fireDesktopFile will use xdg-open.

struct FireOptions
{
  // ...
  void delegate(string) opener = null;
  // ...
}