]> git.sur5r.net Git - i3/i3status/commit
Breaks configfiles! Major refactoring of i3status, see below
authorMichael Stapelberg <michael@stapelberg.de>
Sun, 11 Oct 2009 20:11:09 +0000 (22:11 +0200)
committerMichael Stapelberg <michael@stapelberg.de>
Sun, 11 Oct 2009 20:14:29 +0000 (22:14 +0200)
commitf947d0a446b1b99020722cbc71127fc0c06086b2
tree87b75e70a7e2c0d162685221c66beed5f6b6a9e6
parent1d122f32e6d2b0ae1f964dd755d769885c7bf1c2
Breaks configfiles! Major refactoring of i3status, see below

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.
24 files changed:
.gitignore [new file with mode: 0644]
Makefile
i3status.c
i3status.h
queue.h [deleted file]
src/config.c [deleted file]
src/general.c
src/get_battery_info.c [deleted file]
src/get_cpu_temperature.c [deleted file]
src/get_eth_info.c [deleted file]
src/get_ip_addr.c [deleted file]
src/get_ipv6_addr.c [deleted file]
src/get_load.c [deleted file]
src/get_wireless_info.c [deleted file]
src/output.c
src/print_battery_info.c [new file with mode: 0644]
src/print_cpu_temperature.c [new file with mode: 0644]
src/print_eth_info.c [new file with mode: 0644]
src/print_ip_addr.c [new file with mode: 0644]
src/print_ipv6_addr.c [new file with mode: 0644]
src/print_load.c [new file with mode: 0644]
src/print_run_watch.c [new file with mode: 0644]
src/print_time.c [new file with mode: 0644]
src/print_wireless_info.c [new file with mode: 0644]