1 2 3 4 5 6 7 8 9 10 11 12 13 14
#ifndef TSAR_H #define TSAR_H #include <X11/Xlib.h> #include <X11/Xft/Xft.h> extern Display* display; extern Window win; extern XftColor xft_fg_color; void load_font(const char* font_name); XSetWindowAttributes get_window_attr(unsigned long color); #endif