aboutsummaryrefslogtreecommitdiff
path: root/src/print_run_watch.c
AgeCommit message (Collapse)AuthorFilesLines
2015-04-02Adding the option "format_down" to path_exists and run_watch.Christian Kohlstedde1-2/+8
This fixes #1.
2015-03-16clang-format-3.5 -i **/*.[ch], update modelineMichael Stapelberg1-19/+20
From here on, we’ll use clang-format to automatically format the source. This has worked well in i3, so we are introducing it for i3status.
2014-03-12Unify use of string comparisonsMats1-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
2012-04-08add yajl compat codeMichael Stapelberg1-0/+1
2012-03-25Properly output JSON with libyajlMichael Stapelberg1-14/+10
2012-02-16Implement the i3bar JSON protocolMichael Stapelberg1-0/+9
This hardcodes all the JSON parts. Strings are not properly escaped currently. The best/easiest way to fix this is by actually using libyajl.
2010-07-04Support customized colors.Fernando Tarlá Cardoso Lemos1-1/+1
2009-10-16Obey format for run_watchesMichael Stapelberg1-4/+21
2009-10-11Breaks configfiles! Major refactoring of i3status, see belowMichael Stapelberg1-0/+10
We finally switched to libconfuse for a configuration file format which does not require much work for the programmer nor for the user. Plus, it avoids the Not-Invented-Here syndrome of yet another config file format. Furthermore, as a consequence of providing format strings for every "module" (ipv6, wireless, …), we directly print the output and thus we needed to drop support for wmii. This allowed us to get rid of quite some complexity. Documentation about the new configuration file and options will follow. This commit is the beginning of what will be i3status v2.0.