mirror of
https://github.com/aminnairi/dotfiles.git
synced 2026-09-14 14:32:13 +02:00
fixed color when charged
This commit is contained in:
@@ -145,7 +145,7 @@ const getBattery = async () => {
|
|||||||
const battery = Number(rawBattery.trim()) || 0;
|
const battery = Number(rawBattery.trim()) || 0;
|
||||||
const status = rawStatus.trim();
|
const status = rawStatus.trim();
|
||||||
const icon = status === "Discharging" ? "" : "";
|
const icon = status === "Discharging" ? "" : "";
|
||||||
const color = getHexadecimalColorBetween(red, green, battery / 100);
|
const color = status === "Discharging" ? getHexadecimalColorBetween(red, green, battery / 100) : "#00FF00";
|
||||||
|
|
||||||
return {
|
return {
|
||||||
color,
|
color,
|
||||||
|
|||||||
Reference in New Issue
Block a user