Age | Commit message (Collapse) | Author | Files | Lines | |
---|---|---|---|---|---|
2014-03-12 | Unify use of string comparisons | Mats | 1 | -2/+2 | |
* strncmp(s1, s2, strlen(s2)) → BEGINS_WITH(s1, s2) * strncmp(s1, s2, strlen(s1)) → strcmp(s1, s2) * Prefer case-insensitive comparison for options | |||||
2014-03-09 | disk: Colorize output when below given threshold | Mats | 1 | -1/+59 | |
New disk module options: * threshold_type: ^(percentage|[kmgt]?bytes)_(free|avail)$ * low_threshold: <double> fixes #912 | |||||
2013-12-10 | disk: Distinguish between IEC, SI and custom prefixes | Mats | 1 | -20/+34 | |
* IEC: Ki, Mi, Gi, Ti (powers of 1024) * SI: k, M, G, T (powers of 1000) * custom: K, M, G, T (powers of 1024) | |||||
2012-11-15 | DragonFlyBSD support added | Scott Tincman | 1 | -2/+2 | |
2012-08-31 | introduce percentages for all values, document them | Michael Stapelberg | 1 | -4/+19 | |
2012-08-31 | adding percentage format string for disk info module | gereon | 1 | -0/+5 | |
explicit cast to double, changed format string to percentage | |||||
2012-04-29 | Fix disk usage on OpenBSD. | Jasper Lievisse Adriaanse | 1 | -2/+2 | |
2012-04-08 | add yajl compat code | Michael Stapelberg | 1 | -0/+1 | |
2012-03-25 | Properly output JSON with libyajl | Michael Stapelberg | 1 | -17/+17 | |
2012-02-16 | Implement the i3bar JSON protocol | Michael Stapelberg | 1 | -0/+6 | |
This hardcodes all the JSON parts. Strings are not properly escaped currently. The best/easiest way to fix this is by actually using libyajl. | |||||
2011-12-09 | FreeBSD: fix disk usage print | Baptiste Daroussin | 1 | -0/+13 | |
2010-06-25 | disk_info: implement %avail | Mirko Augsburger | 1 | -0/+5 | |
2010-01-10 | disk: also round when printing TB (Thanks Merovius) | Michael Stapelberg | 1 | -1/+1 | |
2009-10-16 | Bugfix: Cast the integers to uint64_t *before* multiplying (Thanks msi) | Michael Stapelberg | 1 | -3/+3 | |
This fixes problems on 32-bit computers. | |||||
2009-10-12 | Cleanup disk "module" | Michael Stapelberg | 1 | -6/+7 | |
2009-10-11 | Implement disk info (%free/%used/%total) | Michael Stapelberg | 1 | -0/+67 | |