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