mirror of
https://github.com/davatorium/rofi.git
synced 2024-11-03 04:23:42 -05:00
23 lines
453 B
C
23 lines
453 B
C
#ifndef __XRMOPTIONS_H__
|
|
#define __XRMOPTIONS_H__
|
|
|
|
/**
|
|
* @param display Handler of the display to fetch the settings from.
|
|
*
|
|
* Parse the rofi related X resource options of the
|
|
* connected X server.
|
|
*/
|
|
void config_parse_xresource_options ( Display *display );
|
|
|
|
/**
|
|
* Free any allocated memory.
|
|
*/
|
|
void config_xresource_free ( void );
|
|
|
|
/**
|
|
* Dump the settings in a Xresources compatible way to
|
|
* stdout.
|
|
*/
|
|
void xresource_dump ( void );
|
|
|
|
#endif
|