
This way, it also applies to middle clicks. Incidentally, it seems this fixed a crash when opening <a href> urls.
12 lines
347 B
C
12 lines
347 B
C
/* copyright 2013 Sascha Kruse and contributors (see LICENSE for licensing information) */
|
|
#ifndef DUNST_MENU_H
|
|
#define DUNST_MENU_H
|
|
|
|
char *extract_urls(const char *to_match);
|
|
void open_browser(const char *in);
|
|
void invoke_action(const char *action);
|
|
void regex_teardown(void);
|
|
|
|
#endif
|
|
/* vim: set tabstop=8 shiftwidth=8 expandtab textwidth=0: */
|