blob: 8650ae6d2b398ceed7a135419078f4c9ff6c1b67 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
#ifndef DRUN_H
#define DRUN_H
#include "desktop_vec.h"
#include "history.h"
#include "string_vec.h"
struct desktop_vec drun_generate(void);
struct desktop_vec drun_generate_cached(void);
void drun_history_sort(struct desktop_vec *apps, struct history *history);
void drun_launch(const char *filename);
#endif /* DRUN_H */
|