1
0
mirror of https://github.com/Llewellynvdm/conky.git synced 2024-09-29 13:39:10 +00:00
git-svn-id: https://conky.svn.sourceforge.net/svnroot/conky/trunk/conky@67 7f574dfc-610e-0410-a909-a81674777703
This commit is contained in:
Brenden Matthews 2005-08-06 08:13:19 +00:00
parent 1bbf95648a
commit 93d30f5a16
3 changed files with 4 additions and 4 deletions

View File

@ -4,7 +4,7 @@
inherit eutils inherit eutils
DESCRIPTION="minimalist system monitor for X based on torsmo" DESCRIPTION="Conky is an advanced, highly configurable system monitor for X"
HOMEPAGE="http://conky.rty.ca" HOMEPAGE="http://conky.rty.ca"
SRC_URI="http://conky.rty.ca/${P}.tar.bz2" SRC_URI="http://conky.rty.ca/${P}.tar.bz2"

View File

@ -5,7 +5,7 @@ ECVS_SERVER="cvs.sourceforge.net:/cvsroot/conky"
ECVS_MODULE="conky" ECVS_MODULE="conky"
inherit cvs inherit cvs
DESCRIPTION="minimalist system monitor for X based on torsmo" DESCRIPTION="Conky is an advanced, highly configurable system monitor for X"
HOMEPAGE="http://conky.rty.ca" HOMEPAGE="http://conky.rty.ca"
LICENSE="BSD" LICENSE="BSD"

View File

@ -3012,13 +3012,13 @@ static void draw_line(char *s)
float gradient_factor = 0; float gradient_factor = 0;
float gradient_update = 0; float gradient_update = 0;
unsigned int tmpcolour = current_color; unsigned int tmpcolour = current_color;
if (specials[special_index].first_colour != 0 && specials[special_index].last_colour != 0) { if (specials[special_index].first_colour != specials[special_index].last_colour) {
tmpcolour = specials[special_index].first_colour; tmpcolour = specials[special_index].first_colour;
gradient_size = gradient_max(specials[special_index].first_colour, specials[special_index].last_colour); gradient_size = gradient_max(specials[special_index].first_colour, specials[special_index].last_colour);
gradient_factor = (float)gradient_size / (w - 3); gradient_factor = (float)gradient_size / (w - 3);
} }
for (i = 0; i < w - 3; i++) { for (i = 0; i < w - 3; i++) {
if (specials[special_index].first_colour != 0 && specials[special_index].last_colour != 0) { if (specials[special_index].first_colour != specials[special_index].last_colour) {
XSetForeground(display, window.gc, tmpcolour); XSetForeground(display, window.gc, tmpcolour);
gradient_update += gradient_factor; gradient_update += gradient_factor;
while (gradient_update > 0) { while (gradient_update > 0) {