From 41be50a983e4c7313ef63b4b5a7b2db30575c9ba Mon Sep 17 00:00:00 2001 From: "M. Kory Woods" Date: Sun, 7 Jul 2013 10:54:50 -0500 Subject: allow load to be a float --- i3status.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'i3status.c') diff --git a/i3status.c b/i3status.c index ded5799..e99e627 100644 --- a/i3status.c +++ b/i3status.c @@ -261,7 +261,7 @@ int main(int argc, char *argv[]) { cfg_opt_t load_opts[] = { CFG_STR("format", "%1min %5min %15min", CFGF_NONE), - CFG_INT("max_threshold", 5, CFGF_NONE), + CFG_FLOAT("max_threshold", 5, CFGF_NONE), CFG_CUSTOM_COLOR_OPTS, CFG_END() }; @@ -488,7 +488,7 @@ int main(int argc, char *argv[]) { CASE_SEC("load") { SEC_OPEN_MAP("load"); - print_load(json_gen, buffer, cfg_getstr(sec, "format"), cfg_getint(sec, "max_threshold")); + print_load(json_gen, buffer, cfg_getstr(sec, "format"), cfg_getfloat(sec, "max_threshold")); SEC_CLOSE_MAP; } -- cgit v1.2.3