1
0
Fork 0
mirror of https://github.com/davatorium/rofi.git synced 2025-02-10 15:44:41 -05:00
rofi/include/xrmoptions.h

24 lines
453 B
C
Raw Normal View History

#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-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
#endif