diff options
author | Gjum <code.gjum@gmail.com> | 2016-07-27 19:57:50 +0200 |
---|---|---|
committer | Gjum <code.gjum@gmail.com> | 2016-07-27 20:03:55 +0200 |
commit | dbc0f9bd8c3561eb7b9c2d7c13518cb825695d23 (patch) | |
tree | 23a16af431af0846a140e341e67f38083eac4bf3 /i3status.c | |
parent | 1e8dab273d8542366c098dfcda37756db6b2bcd7 (diff) |
change default cpu_usage thresholds to 90 and 95
Diffstat (limited to 'i3status.c')
-rw-r--r-- | i3status.c | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -413,8 +413,8 @@ int main(int argc, char *argv[]) { cfg_opt_t usage_opts[] = { CFG_STR("format", "%usage", CFGF_NONE), - CFG_FLOAT("max_threshold", 200, CFGF_NONE), - CFG_FLOAT("degraded_threshold", 200, CFGF_NONE), + CFG_FLOAT("max_threshold", 95, CFGF_NONE), + CFG_FLOAT("degraded_threshold", 90, CFGF_NONE), CFG_CUSTOM_ALIGN_OPT, CFG_CUSTOM_COLOR_OPTS, CFG_CUSTOM_MIN_WIDTH_OPT, |