set disabled icon to black
- set version to 0.1.0
This commit is contained in:
parent
52c5b782d8
commit
e99ff27549
@ -23,7 +23,7 @@
|
|||||||
{
|
{
|
||||||
fynado = with pkgs; pkgs.buildGoModule rec {
|
fynado = with pkgs; pkgs.buildGoModule rec {
|
||||||
pname = "fynado";
|
pname = "fynado";
|
||||||
version = "v0.0.0";
|
version = "v0.1.0";
|
||||||
src = ./.;
|
src = ./.;
|
||||||
|
|
||||||
vendorHash = "sha256-orfRl0pOiHMwleZci8riKrksbXGzOUmIk+JmP2sf7PA=";
|
vendorHash = "sha256-orfRl0pOiHMwleZci8riKrksbXGzOUmIk+JmP2sf7PA=";
|
||||||
|
3
icon.go
3
icon.go
@ -4,6 +4,7 @@ import (
|
|||||||
"bytes"
|
"bytes"
|
||||||
"fmt"
|
"fmt"
|
||||||
"image"
|
"image"
|
||||||
|
"image/color"
|
||||||
"image/png"
|
"image/png"
|
||||||
"math"
|
"math"
|
||||||
)
|
)
|
||||||
@ -57,7 +58,7 @@ func (m CountIcon) Draw(percentage float64) CountIcon {
|
|||||||
m.data.Set(x, y, sixes)
|
m.data.Set(x, y, sixes)
|
||||||
}
|
}
|
||||||
} else {
|
} else {
|
||||||
m.data.Set(x, y, sixes)
|
m.data.Set(x, y, color.Black)
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user