mirror of
https://github.com/lbonn/rofi
synced 2024-11-15 08:37:17 +00:00
b196649f10
* Pull out dmenu, separate it from normal modi. * Give dmenu a return value (1 on cancel)
10 lines
193 B
C
10 lines
193 B
C
#ifndef __DMENU_DIALOG_H__
|
|
#define __DMENU_DIALOG_H__
|
|
|
|
extern char *dmenu_prompt;
|
|
/**
|
|
* Returns TRUE when success, FALSE when canceled.
|
|
*/
|
|
int dmenu_switcher_dialog ( char **input );
|
|
|
|
#endif
|