mirror of
https://forge.katzen.cafe/schrottkatze/nix-configs.git
synced 2024-11-06 07:36:23 +01:00
24 lines
463 B
Plaintext
24 lines
463 B
Plaintext
|
#!/usr/bin/env nu
|
||
|
|
||
|
const ICONS = [
|
||
|
[ ]
|
||
|
[ ]
|
||
|
[ ]
|
||
|
[ ]
|
||
|
[ ]
|
||
|
[ ]
|
||
|
[ ]
|
||
|
[ ]
|
||
|
[ ]
|
||
|
[ ]
|
||
|
[ ]
|
||
|
];
|
||
|
|
||
|
def get_bat_percent [path: string] {
|
||
|
let energy_full = open $"/sys/class/power_supply/($path)/energy_full" | into float;
|
||
|
let energy_now = open $"/sys/class/power_supply/($path)/energy_now" | into float;
|
||
|
|
||
|
($energy_now / $energy_full) * 100
|
||
|
}
|
||
|
|