Dunst
Lightweight notification daemon
Loading...
Searching...
No Matches
menu.h
Go to the documentation of this file.
1/* SPDX-License-Identifier: BSD-3-Clause */
10
11#ifndef DUNST_MENU_H
12#define DUNST_MENU_H
13
14#include <glib.h>
15
23char *extract_urls(const char *to_match);
24
25void open_browser(const char *in);
26void invoke_action(const char *action);
27void regex_teardown(void);
28
32void context_menu(void);
33
38void context_menu_for(GList *notifications);
39
40#endif
void context_menu(void)
Open the context menu that lets the user select urls/actions/etc for all displayed notifications.
Definition menu.c:320
void context_menu_for(GList *notifications)
Open the context menu that lets the user select urls/actions/etc for the specified notifications.
Definition menu.c:326
char * extract_urls(const char *to_match)
Extract all urls from the given string.
Definition menu.c:72