2014-02-02 09:54:01 +00:00
|
|
|
#ifndef __XRMOPTIONS_H__
|
|
|
|
#define __XRMOPTIONS_H__
|
2014-05-22 19:56:57 +00:00
|
|
|
|
2014-05-27 06:31:59 +00:00
|
|
|
/**
|
|
|
|
* @param display Handler of the display to fetch the settings from.
|
|
|
|
*
|
|
|
|
* Parse the rofi related X resource options of the
|
|
|
|
* connected X server.
|
|
|
|
*/
|
2014-03-22 20:04:19 +00:00
|
|
|
void parse_xresource_options ( Display *display );
|
2014-02-02 09:54:01 +00:00
|
|
|
|
2014-05-27 06:31:59 +00:00
|
|
|
/**
|
|
|
|
* Free any allocated memory.
|
|
|
|
*/
|
2014-05-22 08:03:36 +00:00
|
|
|
void parse_xresource_free ( void );
|
2014-05-22 19:56:57 +00:00
|
|
|
|
2014-05-27 06:31:59 +00:00
|
|
|
/**
|
|
|
|
* Dump the settings in a Xresources compatible way to
|
|
|
|
* stdout.
|
|
|
|
*/
|
2014-05-22 19:56:57 +00:00
|
|
|
void xresource_dump ( void );
|
2014-05-27 06:31:59 +00:00
|
|
|
|
2014-02-02 09:54:01 +00:00
|
|
|
#endif
|