mirror of
https://github.com/Llewellynvdm/conky.git
synced 2024-11-17 10:35:10 +00:00
stuff
git-svn-id: https://conky.svn.sourceforge.net/svnroot/conky/trunk/conky@81 7f574dfc-610e-0410-a909-a81674777703
This commit is contained in:
parent
c303dd406a
commit
a7db5d98e7
@ -15,7 +15,7 @@
|
||||
<kdevautoproject>
|
||||
<general>
|
||||
<activetarget>conky</activetarget>
|
||||
<useconfiguration>debug-no-x</useconfiguration>
|
||||
<useconfiguration>debug</useconfiguration>
|
||||
</general>
|
||||
<run>
|
||||
<mainprogram>conky</mainprogram>
|
||||
|
4
conky.c
4
conky.c
@ -3872,8 +3872,10 @@ else if (strcasecmp(name, a) == 0 || strcasecmp(name, a) == 0)
|
||||
|
||||
#ifdef XDBE
|
||||
CONF("double_buffer") {
|
||||
if (!own_window) {
|
||||
use_xdbe = string_to_bool(value);
|
||||
}
|
||||
}
|
||||
#endif
|
||||
#ifdef X11
|
||||
CONF("override_utf8_locale") {
|
||||
@ -4024,6 +4026,7 @@ else if (strcasecmp(name, a) == 0 || strcasecmp(name, a) == 0)
|
||||
#ifdef OWN_WINDOW
|
||||
CONF("own_window") {
|
||||
own_window = string_to_bool(value);
|
||||
use_xdbe = 0;
|
||||
}
|
||||
#endif
|
||||
CONF("stippled_borders") {
|
||||
@ -4284,6 +4287,7 @@ int main(int argc, char **argv)
|
||||
#ifdef OWN_WINDOW
|
||||
case 'o':
|
||||
own_window = 1;
|
||||
use_xdbe = 0;
|
||||
break;
|
||||
#endif
|
||||
#ifdef XDBE
|
||||
|
Loading…
Reference in New Issue
Block a user