mirror of
https://github.com/labwc/labwc.git
synced 2025-11-03 09:01:51 -05:00
Add theme.c to parse openbox's themerc
This commit is contained in:
parent
0ede4c61e6
commit
d40445da1d
10 changed files with 146 additions and 2 deletions
14
include/theme.h
Normal file
14
include/theme.h
Normal file
|
|
@ -0,0 +1,14 @@
|
|||
#ifndef THEME_H
|
||||
#define THEME_H
|
||||
|
||||
#include <stdio.h>
|
||||
|
||||
struct theme {
|
||||
float window_active_title_bg_color[4];
|
||||
};
|
||||
|
||||
extern struct theme theme;
|
||||
|
||||
void theme_read(const char *filename);
|
||||
|
||||
#endif /* THEME_H */
|
||||
Loading…
Add table
Add a link
Reference in a new issue