2005-08-05 01:06:17 +00:00
|
|
|
/*
|
|
|
|
* Conky, a system monitor, based on torsmo
|
|
|
|
*
|
|
|
|
* This program is licensed under BSD license, read COPYING
|
|
|
|
*
|
|
|
|
* $Id$
|
|
|
|
*/
|
|
|
|
|
2005-08-29 17:06:31 +00:00
|
|
|
|
2005-07-20 00:30:40 +00:00
|
|
|
#include "conky.h"
|
2005-08-30 00:22:55 +00:00
|
|
|
|
|
|
|
#ifdef X11
|
2005-07-20 00:30:40 +00:00
|
|
|
#include <X11/Xlib.h>
|
|
|
|
#include <X11/Xatom.h>
|
|
|
|
#include <X11/Xutil.h>
|
|
|
|
#ifdef XFT
|
|
|
|
#include <X11/Xft/Xft.h>
|
|
|
|
#endif
|
|
|
|
|
2005-11-12 03:41:55 +00:00
|
|
|
#include <stdio.h>
|
|
|
|
|
2005-07-20 00:30:40 +00:00
|
|
|
#ifdef XDBE
|
|
|
|
int use_xdbe;
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#ifdef XFT
|
2005-08-04 02:17:25 +00:00
|
|
|
int use_xft = 0;
|
2005-07-20 00:30:40 +00:00
|
|
|
#endif
|
|
|
|
|
2005-11-12 03:41:55 +00:00
|
|
|
#define WINDOW_NAME_FMT "%s - conky"
|
|
|
|
|
2005-07-20 00:30:40 +00:00
|
|
|
/* some basic X11 stuff */
|
|
|
|
Display *display;
|
|
|
|
int display_width;
|
|
|
|
int display_height;
|
|
|
|
int screen;
|
2005-08-25 09:24:26 +00:00
|
|
|
static int set_transparent;
|
|
|
|
static int background_colour;
|
2005-07-20 00:30:40 +00:00
|
|
|
|
|
|
|
/* workarea from _NET_WORKAREA, this is where window / text is aligned */
|
|
|
|
int workarea[4];
|
|
|
|
|
|
|
|
/* Window stuff */
|
|
|
|
struct conky_window window;
|
|
|
|
|
|
|
|
/* local prototypes */
|
|
|
|
static void update_workarea();
|
2006-02-14 06:15:38 +00:00
|
|
|
static Window find_desktop_window();
|
2005-07-20 00:30:40 +00:00
|
|
|
static Window find_subwindow(Window win, int w, int h);
|
|
|
|
|
|
|
|
/* X11 initializer */
|
|
|
|
void init_X11()
|
|
|
|
{
|
|
|
|
if ((display = XOpenDisplay(0)) == NULL)
|
|
|
|
CRIT_ERR("can't open display: %s", XDisplayName(0));
|
|
|
|
|
|
|
|
screen = DefaultScreen(display);
|
|
|
|
display_width = DisplayWidth(display, screen);
|
|
|
|
display_height = DisplayHeight(display, screen);
|
|
|
|
|
|
|
|
update_workarea();
|
|
|
|
}
|
|
|
|
|
|
|
|
static void update_workarea()
|
|
|
|
{
|
|
|
|
Window root = RootWindow(display, screen);
|
|
|
|
unsigned long nitems, bytes;
|
|
|
|
unsigned char *buf = NULL;
|
|
|
|
Atom type;
|
|
|
|
int format;
|
|
|
|
|
|
|
|
/* default work area is display */
|
|
|
|
workarea[0] = 0;
|
|
|
|
workarea[1] = 0;
|
|
|
|
workarea[2] = display_width;
|
|
|
|
workarea[3] = display_height;
|
|
|
|
|
|
|
|
/* get current desktop */
|
|
|
|
if (XGetWindowProperty(display, root, ATOM(_NET_CURRENT_DESKTOP),
|
|
|
|
0, 1, False, XA_CARDINAL, &type, &format,
|
|
|
|
&nitems, &bytes, &buf) == Success
|
|
|
|
&& type == XA_CARDINAL && nitems > 0) {
|
|
|
|
|
|
|
|
//Currently unused
|
|
|
|
/* long desktop = * (long *) buf; */
|
|
|
|
|
|
|
|
XFree(buf);
|
|
|
|
buf = 0;
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
if (buf) {
|
|
|
|
XFree(buf);
|
|
|
|
buf = 0;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2006-02-14 06:15:38 +00:00
|
|
|
static Window find_desktop_window()
|
2005-07-20 00:30:40 +00:00
|
|
|
{
|
|
|
|
Atom type;
|
|
|
|
int format, i;
|
|
|
|
unsigned long nitems, bytes;
|
|
|
|
unsigned int n;
|
|
|
|
Window root = RootWindow(display, screen);
|
|
|
|
Window win = root;
|
|
|
|
Window troot, parent, *children;
|
|
|
|
unsigned char *buf = NULL;
|
|
|
|
|
|
|
|
/* some window managers set __SWM_VROOT to some child of root window */
|
|
|
|
|
|
|
|
XQueryTree(display, root, &troot, &parent, &children, &n);
|
|
|
|
for (i = 0; i < (int) n; i++) {
|
|
|
|
if (XGetWindowProperty
|
|
|
|
(display, children[i], ATOM(__SWM_VROOT), 0, 1, False,
|
|
|
|
XA_WINDOW, &type, &format, &nitems, &bytes,
|
|
|
|
&buf) == Success && type == XA_WINDOW) {
|
|
|
|
win = *(Window *) buf;
|
|
|
|
XFree(buf);
|
|
|
|
XFree(children);
|
|
|
|
fprintf(stderr,
|
2006-02-14 06:15:38 +00:00
|
|
|
"Conky: desktop window (%lx) found from __SWM_VROOT property\n", win);
|
2005-07-20 00:30:40 +00:00
|
|
|
return win;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (buf) {
|
|
|
|
XFree(buf);
|
|
|
|
buf = 0;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
XFree(children);
|
|
|
|
|
|
|
|
/* get subwindows from root */
|
|
|
|
win = find_subwindow(root, -1, -1);
|
|
|
|
|
|
|
|
update_workarea();
|
|
|
|
|
|
|
|
win = find_subwindow(win, workarea[2], workarea[3]);
|
|
|
|
|
|
|
|
if (buf) {
|
|
|
|
XFree(buf);
|
|
|
|
buf = 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (win != root)
|
|
|
|
fprintf(stderr,
|
2006-02-14 06:15:38 +00:00
|
|
|
"Conky: desktop window (%lx) is subwindow of root window (%lx)\n",win,root);
|
2005-07-20 00:30:40 +00:00
|
|
|
else
|
2006-02-14 06:15:38 +00:00
|
|
|
fprintf(stderr, "Conky: desktop window (%lx) is root window\n",win);
|
2005-07-20 00:30:40 +00:00
|
|
|
|
|
|
|
return win;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* sets background to ParentRelative for the Window and all parents */
|
2005-08-26 02:16:35 +00:00
|
|
|
inline void set_transparent_background(Window win)
|
2005-07-20 00:30:40 +00:00
|
|
|
{
|
2005-08-26 02:16:35 +00:00
|
|
|
static int colour_set = -1;
|
2005-08-25 09:24:26 +00:00
|
|
|
if (set_transparent) {
|
|
|
|
Window parent = win;
|
|
|
|
unsigned int i;
|
2005-08-26 02:16:35 +00:00
|
|
|
for (i = 0; i < 50 && parent != RootWindow(display, screen); i++) {
|
2005-08-25 09:24:26 +00:00
|
|
|
Window r, *children;
|
|
|
|
unsigned int n;
|
|
|
|
|
|
|
|
XSetWindowBackgroundPixmap(display, parent, ParentRelative);
|
|
|
|
|
|
|
|
XQueryTree(display, parent, &r, &parent, &children, &n);
|
|
|
|
XFree(children);
|
2005-08-26 02:16:35 +00:00
|
|
|
}
|
|
|
|
} else if (colour_set != background_colour) {
|
2005-08-25 09:24:26 +00:00
|
|
|
XSetWindowBackground(display, win, background_colour);
|
2005-08-26 02:16:35 +00:00
|
|
|
colour_set = background_colour;
|
2005-09-11 23:07:28 +00:00
|
|
|
}
|
2005-08-26 05:52:43 +00:00
|
|
|
//XClearWindow(display, win); not sure why this was here
|
2005-07-20 00:30:40 +00:00
|
|
|
}
|
|
|
|
|
2006-03-06 05:58:58 +00:00
|
|
|
void init_window(int own_window, int w, int h, int set_trans, int back_colour, char * nodename,
|
|
|
|
char **argv, int argc)
|
2005-07-20 00:30:40 +00:00
|
|
|
{
|
|
|
|
/* There seems to be some problems with setting transparent background (on
|
|
|
|
* fluxbox this time). It doesn't happen always and I don't know why it
|
|
|
|
* happens but I bet the bug is somewhere here. */
|
2005-08-25 09:24:26 +00:00
|
|
|
set_transparent = set_trans;
|
|
|
|
background_colour = back_colour;
|
2005-07-20 00:30:40 +00:00
|
|
|
|
2006-02-14 06:15:38 +00:00
|
|
|
nodename = (char *)nodename;
|
2005-07-20 00:30:40 +00:00
|
|
|
|
2006-02-14 06:15:38 +00:00
|
|
|
#ifdef OWN_WINDOW
|
|
|
|
if (own_window) {
|
2005-07-20 00:30:40 +00:00
|
|
|
{
|
2006-03-06 05:58:58 +00:00
|
|
|
/* Allow WM control of conky again. Shielding conky from the WM
|
|
|
|
* via override redirect creates more problems than it's worth and
|
|
|
|
* makes it impossible to use tools like devilspie to manage the
|
|
|
|
* conky windows beyond the parametsrs we offer. Also, button
|
|
|
|
* press events are now explicitly forwarded to the root window. */
|
2006-02-14 06:15:38 +00:00
|
|
|
XSetWindowAttributes attrs = {
|
|
|
|
ParentRelative,0L,0,0L,0,0,Always,0L,0L,False,
|
2006-03-06 05:58:58 +00:00
|
|
|
StructureNotifyMask|ExposureMask|ButtonPressMask,
|
|
|
|
0L,False,0,0 };
|
|
|
|
|
|
|
|
XClassHint classHint;
|
|
|
|
XWMHints wmHint;
|
|
|
|
char window_title[256];
|
2005-07-20 00:30:40 +00:00
|
|
|
|
2006-02-14 06:15:38 +00:00
|
|
|
window.root = find_desktop_window();
|
2006-01-26 01:27:41 +00:00
|
|
|
|
2006-02-14 06:15:38 +00:00
|
|
|
window.window = XCreateWindow(display, window.root,
|
|
|
|
window.x, window.y, w, h, 0,
|
|
|
|
CopyFromParent,
|
|
|
|
InputOutput,
|
|
|
|
CopyFromParent,
|
|
|
|
CWBackPixel|CWOverrideRedirect, &attrs);
|
2006-01-26 01:27:41 +00:00
|
|
|
|
2006-02-14 06:15:38 +00:00
|
|
|
fprintf(stderr, "Conky: drawing to created window (%lx)\n", window.window);
|
2006-01-26 19:57:12 +00:00
|
|
|
|
2006-03-06 05:58:58 +00:00
|
|
|
classHint.res_name = "conky";
|
|
|
|
classHint.res_class = classHint.res_name;
|
|
|
|
|
|
|
|
wmHint.flags = InputHint | StateHint;
|
|
|
|
wmHint.input = False;
|
|
|
|
wmHint.initial_state = NormalState;
|
|
|
|
|
|
|
|
sprintf(window_title,WINDOW_NAME_FMT,nodename);
|
2006-01-26 19:57:12 +00:00
|
|
|
|
2006-03-06 05:58:58 +00:00
|
|
|
XmbSetWMProperties (display, window.window, window_title, NULL,
|
|
|
|
argv, argc,
|
|
|
|
NULL, &wmHint, &classHint);
|
|
|
|
|
|
|
|
/* Sets an empty WM_PROTOCOLS property */
|
|
|
|
XSetWMProtocols(display,window.window,NULL,0);
|
|
|
|
|
|
|
|
XLowerWindow(display, window.window);
|
2006-02-14 06:15:38 +00:00
|
|
|
XMapWindow(display, window.window);
|
2006-01-26 19:57:12 +00:00
|
|
|
|
2005-07-20 00:30:40 +00:00
|
|
|
}
|
|
|
|
} else
|
|
|
|
#endif
|
|
|
|
/* root / desktop window */
|
|
|
|
{
|
|
|
|
XWindowAttributes attrs;
|
|
|
|
|
|
|
|
if (!window.window)
|
2006-02-14 06:15:38 +00:00
|
|
|
window.window = find_desktop_window();
|
2005-07-20 00:30:40 +00:00
|
|
|
|
|
|
|
if (XGetWindowAttributes(display, window.window, &attrs)) {
|
|
|
|
window.width = attrs.width;
|
|
|
|
window.height = attrs.height;
|
|
|
|
}
|
2006-02-14 06:15:38 +00:00
|
|
|
|
|
|
|
fprintf(stderr, "Conky: drawing to desktop window\n");
|
2005-07-20 00:30:40 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/* Drawable is same as window. This may be changed by double buffering. */
|
|
|
|
window.drawable = window.window;
|
|
|
|
|
|
|
|
#ifdef XDBE
|
|
|
|
if (use_xdbe) {
|
|
|
|
int major, minor;
|
|
|
|
if (!XdbeQueryExtension(display, &major, &minor)) {
|
|
|
|
use_xdbe = 0;
|
|
|
|
} else {
|
|
|
|
window.back_buffer =
|
|
|
|
XdbeAllocateBackBufferName(display,
|
|
|
|
window.window,
|
|
|
|
XdbeBackground);
|
|
|
|
if (window.back_buffer != None) {
|
|
|
|
window.drawable = window.back_buffer;
|
|
|
|
fprintf(stderr,
|
|
|
|
"Conky: drawing to double buffer\n");
|
|
|
|
} else
|
|
|
|
use_xdbe = 0;
|
|
|
|
}
|
|
|
|
if (!use_xdbe)
|
|
|
|
ERR("failed to set up double buffer");
|
|
|
|
}
|
|
|
|
if (!use_xdbe)
|
|
|
|
fprintf(stderr, "Conky: drawing to single buffer\n");
|
|
|
|
#endif
|
|
|
|
|
|
|
|
XFlush(display);
|
|
|
|
|
2005-08-25 09:24:26 +00:00
|
|
|
/*set_transparent_background(window.window); must be done after double buffer stuff? */
|
2005-07-20 00:30:40 +00:00
|
|
|
#ifdef OWN_WINDOW
|
2005-08-26 02:16:35 +00:00
|
|
|
/*if (own_window) {
|
|
|
|
set_transparent_background(window.window);
|
2005-07-20 00:30:40 +00:00
|
|
|
XClearWindow(display, window.window);
|
2005-08-26 02:16:35 +00:00
|
|
|
}*/
|
2005-07-20 00:30:40 +00:00
|
|
|
#endif
|
|
|
|
|
|
|
|
XSelectInput(display, window.window, ExposureMask
|
|
|
|
#ifdef OWN_WINDOW
|
|
|
|
| (own_window
|
2006-03-06 05:58:58 +00:00
|
|
|
? (StructureNotifyMask | PropertyChangeMask | ButtonPressMask) : 0)
|
2005-07-20 00:30:40 +00:00
|
|
|
#endif
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
|
|
|
static Window find_subwindow(Window win, int w, int h)
|
|
|
|
{
|
|
|
|
unsigned int i, j;
|
|
|
|
Window troot, parent, *children;
|
|
|
|
unsigned int n;
|
|
|
|
|
|
|
|
/* search subwindows with same size as display or work area */
|
|
|
|
|
|
|
|
for (i = 0; i < 10; i++) {
|
|
|
|
XQueryTree(display, win, &troot, &parent, &children, &n);
|
|
|
|
|
|
|
|
for (j = 0; j < n; j++) {
|
|
|
|
XWindowAttributes attrs;
|
|
|
|
|
|
|
|
if (XGetWindowAttributes
|
|
|
|
(display, children[j], &attrs)) {
|
|
|
|
/* Window must be mapped and same size as display or work space */
|
|
|
|
if (attrs.map_state != 0 &&
|
|
|
|
((attrs.width == display_width
|
|
|
|
&& attrs.height == display_height)
|
|
|
|
|| (attrs.width == w
|
|
|
|
&& attrs.height == h))) {
|
|
|
|
win = children[j];
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
XFree(children);
|
|
|
|
if (j == n)
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
return win;
|
|
|
|
}
|
|
|
|
|
|
|
|
long get_x11_color(const char *name)
|
|
|
|
{
|
2005-07-28 04:48:27 +00:00
|
|
|
XColor color;
|
2005-07-20 00:30:40 +00:00
|
|
|
color.pixel = 0;
|
2005-07-28 04:48:27 +00:00
|
|
|
if (!XParseColor
|
|
|
|
(display, DefaultColormap(display, screen), name, &color)) {
|
2005-12-31 17:36:16 +00:00
|
|
|
/* lets check if it's a hex colour with the # missing in front
|
|
|
|
* if yes, then do something about it
|
|
|
|
*/
|
|
|
|
char newname[64];
|
|
|
|
newname[0] = '#';
|
|
|
|
strncpy(&newname[1], name, 62);
|
|
|
|
/* now lets try again */
|
|
|
|
if (!XParseColor(display, DefaultColormap(display, screen), &newname[0], &color)) {
|
|
|
|
ERR("can't parse X color '%s'", name);
|
|
|
|
return 0xFF00FF;
|
|
|
|
}
|
2005-07-20 00:30:40 +00:00
|
|
|
}
|
|
|
|
if (!XAllocColor
|
|
|
|
(display, DefaultColormap(display, screen), &color))
|
|
|
|
ERR("can't allocate X color '%s'", name);
|
|
|
|
|
|
|
|
return (long) color.pixel;
|
|
|
|
}
|
|
|
|
|
|
|
|
void create_gc()
|
|
|
|
{
|
|
|
|
XGCValues values;
|
|
|
|
values.graphics_exposures = 0;
|
|
|
|
values.function = GXcopy;
|
|
|
|
window.gc = XCreateGC(display, window.drawable,
|
|
|
|
GCFunction | GCGraphicsExposures, &values);
|
|
|
|
}
|
2005-08-29 17:06:31 +00:00
|
|
|
|
|
|
|
#endif /* X11 */
|