Initial commit!

This commit is contained in:
reddsik
2017-03-26 13:00:19 +02:00
commit c85716f60e
90 changed files with 28790 additions and 0 deletions

16
style.h Normal file
View File

@@ -0,0 +1,16 @@
#ifndef STYLE_H
#define STYLE_H
#include <X11/Xlib.h>
#include "icon.h"
typedef struct _Style {
struct _Style *next;
char *style_class, *style_title, *style_icon_title;
struct IconPixmaps icon_pms;
unsigned int icon_pm_w, icon_pm_h;
char *icon_name;
} Style;
#endif