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
445 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.
*/
2014-03-22 21:04:19 +01:00
void parse_xresource_options ( Display *display );
2014-05-27 08:31:59 +02:00
/**
* Free any allocated memory.
*/
2014-05-22 10:03:36 +02:00
void parse_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