{ pkgs, config, lib, vars, ... }: { programs.i3-status = { enable = true; general = { colors = true; color_good = vars.colors.text; color_bad = vars.colors.foreground; interval = 1; }; modules = { # Battery status "battery 0" = { enable = true; position = 4; settings = { format = "BAT: %status %percentage; format_down = "No battery"; status_chr = "CHR"; status_bat = ""; status_unk = "?"; status_full = "FULL"; path = "/sys/class/power_supply/BAT1/uevent"; low_threshold = 10; }; }; }; }; }