mirror of
https://git.pwmt.org/pwmt/zathura.git
synced 2024-12-29 09:16:00 +01:00
open external links with xdg-open
This commit is contained in:
parent
82525556a3
commit
daf418bbb7
1 changed files with 6 additions and 1 deletions
|
@ -123,7 +123,12 @@ cb_index_row_activated(GtkTreeView* tree_view, GtkTreePath* path,
|
||||||
sc_toggle_index(zathura->ui.session, NULL, 0);
|
sc_toggle_index(zathura->ui.session, NULL, 0);
|
||||||
page_set_delayed(zathura, index_element->target.page_number);
|
page_set_delayed(zathura, index_element->target.page_number);
|
||||||
} else if (index_element->type == ZATHURA_LINK_EXTERNAL) {
|
} else if (index_element->type == ZATHURA_LINK_EXTERNAL) {
|
||||||
// TODO
|
char* argv[3] = { "xdg-open", index_element->target.uri, NULL };
|
||||||
|
GError* error = NULL;
|
||||||
|
if (!g_spawn_async(NULL, argv, NULL, 0, NULL, NULL, NULL, &error)) {
|
||||||
|
girara_notify(zathura->ui.session, GIRARA_ERROR, "Failed to run xdg-open: %s", error->message);
|
||||||
|
g_error_free(error);
|
||||||
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue