diff options
author | lassulus <git@lassul.us> | 2023-05-02 20:43:53 +0200 |
---|---|---|
committer | lassulus <git@lassul.us> | 2023-05-02 20:43:53 +0200 |
commit | 6772b8b3a4f86eaef7e7df259e211aff3b22d876 (patch) | |
tree | 6794f00e130268e8d88af2c02ba481226f757426 /krebs/5pkgs/simple | |
parent | 40345c34bf6ff873e89e12ec66927cc5ec996d93 (diff) | |
parent | b60be1128bf5525cf78b9b57afd19e001cd5a9d3 (diff) |
Merge remote-tracking branch 'ni/master'
Diffstat (limited to 'krebs/5pkgs/simple')
-rw-r--r-- | krebs/5pkgs/simple/q-power_supply.nix | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/krebs/5pkgs/simple/q-power_supply.nix b/krebs/5pkgs/simple/q-power_supply.nix index 627e3f905..ef133bfbd 100644 --- a/krebs/5pkgs/simple/q-power_supply.nix +++ b/krebs/5pkgs/simple/q-power_supply.nix @@ -63,6 +63,7 @@ writeDashBin "q-power_supply" '' END { name = ENVIRON["POWER_SUPPLY_NAME"] + status = ENVIRON["POWER_SUPPLY_STATUS"] charge_unit = "Ah" charge_now = ENVIRON["POWER_SUPPLY_CHARGE_NOW"] / 10^6 @@ -132,6 +133,8 @@ writeDashBin "q-power_supply" '' out = out sprintf(" %s", print_hm(charge_now / current_now)) } + out = out " " status + print out } ' |