mirror of
https://github.com/Llewellynvdm/conky.git
synced 2024-11-18 02:55:12 +00:00
hints fix???
git-svn-id: https://conky.svn.sourceforge.net/svnroot/conky/trunk/conky@545 7f574dfc-610e-0410-a909-a81674777703
This commit is contained in:
parent
fdb633ce95
commit
1cc3eb98cd
12
src/x11.c
12
src/x11.c
@ -278,7 +278,7 @@ void init_window(int own_window, int w, int h, int set_trans, int back_colour, c
|
||||
Atom xa_prop = ATOM(_NET_WM_STATE_BELOW);
|
||||
XChangeProperty(display, window.window, xa,
|
||||
XA_ATOM, 32,
|
||||
PropModeAppend,
|
||||
PropModeReplace,
|
||||
(unsigned char *) &xa_prop,
|
||||
1);
|
||||
}
|
||||
@ -302,7 +302,7 @@ void init_window(int own_window, int w, int h, int set_trans, int back_colour, c
|
||||
Atom xa_prop = ATOM(_NET_WM_STATE_ABOVE);
|
||||
XChangeProperty(display, window.window, xa,
|
||||
XA_ATOM, 32,
|
||||
PropModeAppend,
|
||||
PropModeReplace,
|
||||
(unsigned char *) &xa_prop,
|
||||
1);
|
||||
}
|
||||
@ -317,7 +317,7 @@ void init_window(int own_window, int w, int h, int set_trans, int back_colour, c
|
||||
Atom xa_prop = ATOM(_NET_WM_STATE_STICKY);
|
||||
XChangeProperty(display, window.window, xa,
|
||||
XA_ATOM, 32,
|
||||
PropModeAppend,
|
||||
PropModeReplace,
|
||||
(unsigned char *) &xa_prop,
|
||||
1);
|
||||
}
|
||||
@ -332,7 +332,7 @@ void init_window(int own_window, int w, int h, int set_trans, int back_colour, c
|
||||
Atom xa_prop = ATOM(_NET_WM_STATE_SKIP_TASKBAR);
|
||||
XChangeProperty(display, window.window, xa,
|
||||
XA_ATOM, 32,
|
||||
PropModeAppend,
|
||||
PropModeReplace,
|
||||
(unsigned char *) &xa_prop,
|
||||
1);
|
||||
}
|
||||
@ -347,14 +347,12 @@ void init_window(int own_window, int w, int h, int set_trans, int back_colour, c
|
||||
Atom xa_prop = ATOM(_NET_WM_STATE_SKIP_PAGER);
|
||||
XChangeProperty(display, window.window, xa,
|
||||
XA_ATOM, 32,
|
||||
PropModeAppend,
|
||||
PropModeReplace,
|
||||
(unsigned char *) &xa_prop,
|
||||
1);
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
|
||||
XMapWindow(display, window.window);
|
||||
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user