From fc53ed8222ac81a61af347c790f19820eb98e9fc Mon Sep 17 00:00:00 2001 From: Michael Stapelberg Date: Wed, 9 Apr 2014 20:33:07 +0200 Subject: [PATCH] rebuild docs/ with the new _docs/conf/ --- docs/buildbot.html | 4 +- docs/debugging-release-version.html | 4 +- docs/debugging.html | 4 +- docs/gsoc2013-ideas.html | 4 +- docs/hacking-howto.html | 4 +- docs/i3-config-wizard.html | 4 +- docs/i3-migrate-config-to-v4.html | 4 +- docs/i3-msg.html | 4 +- docs/i3-nagbar.html | 4 +- docs/i3.html | 4 +- docs/i3bar-protocol.html | 4 +- docs/i3status.html | 64 ++++++++++++++++++++++++----- docs/ipc.html | 4 +- docs/multi-monitor.html | 4 +- docs/repositories.html | 4 +- docs/testsuite.html | 4 +- docs/tshirts.html | 4 +- docs/userguide.html | 4 +- docs/wsbar.html | 4 +- 19 files changed, 89 insertions(+), 47 deletions(-) diff --git a/docs/buildbot.html b/docs/buildbot.html index 57e0202..2e7fd6d 100644 --- a/docs/buildbot.html +++ b/docs/buildbot.html @@ -4,13 +4,13 @@ - + i3: The i3 buildbot setup diff --git a/docs/debugging-release-version.html b/docs/debugging-release-version.html index d009361..5fc76ae 100644 --- a/docs/debugging-release-version.html +++ b/docs/debugging-release-version.html @@ -4,13 +4,13 @@ - + i3: Debugging i3: How To (release version) diff --git a/docs/debugging.html b/docs/debugging.html index e314f09..934a131 100644 --- a/docs/debugging.html +++ b/docs/debugging.html @@ -4,13 +4,13 @@ - + i3: Debugging i3: How To diff --git a/docs/gsoc2013-ideas.html b/docs/gsoc2013-ideas.html index e7c04d8..7bef056 100644 --- a/docs/gsoc2013-ideas.html +++ b/docs/gsoc2013-ideas.html @@ -4,13 +4,13 @@ - + i3: Google Summer of Code 2013 ideas diff --git a/docs/hacking-howto.html b/docs/hacking-howto.html index 3a23ff4..6fc51d0 100644 --- a/docs/hacking-howto.html +++ b/docs/hacking-howto.html @@ -4,13 +4,13 @@ - + i3: Hacking i3: How To diff --git a/docs/i3-config-wizard.html b/docs/i3-config-wizard.html index 1389d2f..bdbee9c 100644 --- a/docs/i3-config-wizard.html +++ b/docs/i3-config-wizard.html @@ -4,13 +4,13 @@ - + i3: i3-config-wizard(1) diff --git a/docs/i3-migrate-config-to-v4.html b/docs/i3-migrate-config-to-v4.html index e2c31b2..756fd4e 100644 --- a/docs/i3-migrate-config-to-v4.html +++ b/docs/i3-migrate-config-to-v4.html @@ -4,13 +4,13 @@ - + i3: i3-migrate-config-to-v4(1) diff --git a/docs/i3-msg.html b/docs/i3-msg.html index 2324fab..26fbd84 100644 --- a/docs/i3-msg.html +++ b/docs/i3-msg.html @@ -4,13 +4,13 @@ - + i3: i3-msg(1) diff --git a/docs/i3-nagbar.html b/docs/i3-nagbar.html index 64ee27e..7d156a4 100644 --- a/docs/i3-nagbar.html +++ b/docs/i3-nagbar.html @@ -4,13 +4,13 @@ - + i3: i3-nagbar(1) diff --git a/docs/i3.html b/docs/i3.html index 303ce22..b45f24a 100644 --- a/docs/i3.html +++ b/docs/i3.html @@ -4,13 +4,13 @@ - + i3: i3(1) diff --git a/docs/i3bar-protocol.html b/docs/i3bar-protocol.html index 6b6d5d4..679093e 100644 --- a/docs/i3bar-protocol.html +++ b/docs/i3bar-protocol.html @@ -4,13 +4,13 @@ - + i3: i3bar input protocol diff --git a/docs/i3status.html b/docs/i3status.html index c4bccd5..c864268 100644 --- a/docs/i3status.html +++ b/docs/i3status.html @@ -4,13 +4,13 @@ - + i3: i3status(1) @@ -125,7 +125,8 @@ order += "ethernet eth0" order += "battery 0" order += "cpu_temperature 0" order += "load" -order += "time" +order += "tztime local" +order += "tztime berlin" wireless wlan0 { format_up = "W: (%quality at %essid, %bitrate) %ip" @@ -152,10 +153,15 @@ run_watch VPN { pidfile = "/var/run/vpnc/pid" } -time { +tztime local { format = "%Y-%m-%d %H:%M:%S" } +tztime berlin { + format = "%Y-%m-%d %H:%M:%S %Z" + timezone = "Europe/Berlin" +} + load { format = "%5min" } @@ -232,6 +238,10 @@ be used with i3bar and can be used for custom scripts.

+

It’s also possible to use the color_good, color_degraded, color_bad directives +to define specific colors per module. If one of these directives is defined +in a module section its value will override the value defined in the general +section just for this module.

5.2. IPv6

@@ -282,6 +292,8 @@ design capacity (when using the design capacity, it may happen that your battery is at 23% when fully charged because it’s old. In general, I want to see it this way, because it tells me how worn off my battery is.), just specify last_full_capacity = true.

+

If you want the battery percentage to be shown without decimals, add +integer_battery_capacity = true.

If your battery is represented in a non-standard path in /sys, be sure to modify the "path" property accordingly. The first occurence of %d gets replaced with the battery number, but you can just hard-code a path as well.

@@ -296,9 +308,12 @@ colored red. The low_threshold type can be of threshold_type "time" or

5.8. CPU-Temperature

-

Gets the temperature of the given thermal zone.

+

Gets the temperature of the given thermal zone. It is possible to +define a max_threshold that will color the temperature red in case the +specified thermal zone is getting too hot. Defaults to 75 degrees C.

Example order: cpu_temperature 0

Example format: T: %degrees °C

+

Example max_threshold: 42

5.9. CPU Usage

@@ -309,18 +324,37 @@ colored red. The low_threshold type can be of threshold_type "time" or

5.10. Load

Gets the system load (number of processes waiting for CPU time in the last -1, 5 and 15 minutes).

+1, 5 and 15 minutes). It is possible to define a max_threshold that will +color the load value red in case the load average of the last minute is +getting higher than the configured threshold. Defaults to 5.

Example order: load

Example format: %1min %5min %15min

+

Example max_threshold: 5

5.11. Time

-

Formats the current system time. See strftime(3) for the format.

+

Outputs the current time in the local timezone. +To use a different timezone, you can set the TZ environment variable, +or use the tztime module. +See strftime(3) for details on the format string.

Example order: time

Example format: %Y-%m-%d %H:%M:%S

-

5.12. DDate

+

5.12. TzTime

+

Outputs the current time in the given timezone. +If no timezone is given, local time will be used. +See strftime(3) for details on the format string. +The system’s timezone database is usually installed in /usr/share/zoneinfo. +Files below that path make for valid timezone strings, e.g. for +/usr/share/zoneinfo/Europe/Berlin you can set timezone to Europe/Berlin +in the tztime module.

+

Example order: tztime berlin

+

Example format: %Y-%m-%d %H:%M:%S %Z

+

Example timezone: Europe/Berlin

+
+
+

5.13. DDate

Outputs the current discordian date in user-specified format. See ddate(1) for details on the format string. Note: Neither %. nor %X are implemented yet.

@@ -328,7 +362,7 @@ details on the format string.

Example format: %{%a, %b %d%}, %Y%N - %H

-

5.13. Volume

+

5.14. Volume

Outputs the volume of the specified mixer on the specified device. Works only on Linux because it uses ALSA. A simplified configuration can be used on FreeBSD and OpenBSD due to @@ -434,13 +468,21 @@ contrib/ folder, see http:/

-

10. SEE ALSO

+

10. SIGNALS

+
+

When receiving SIGUSR1, i3status’s nanosleep() will be interrupted and thus +you will force an update. You can use killall -USR1 i3status to force an update +after changing the system volume, for example.

+
+
+
+

11. SEE ALSO

strftime(3), date(1), glob(3), dzen2(1), xmobar(1)

-

11. AUTHORS

+

12. AUTHORS

Michael Stapelberg and contributors

Thorsten Toepper

diff --git a/docs/ipc.html b/docs/ipc.html index 3b06485..91cb0b1 100644 --- a/docs/ipc.html +++ b/docs/ipc.html @@ -4,13 +4,13 @@ - + i3: IPC interface (interprocess communication) diff --git a/docs/multi-monitor.html b/docs/multi-monitor.html index 77dfa49..26ddcaa 100644 --- a/docs/multi-monitor.html +++ b/docs/multi-monitor.html @@ -4,13 +4,13 @@ - + i3: The multi-monitor situation diff --git a/docs/repositories.html b/docs/repositories.html index c5cf1f3..0acfb25 100644 --- a/docs/repositories.html +++ b/docs/repositories.html @@ -4,13 +4,13 @@ - + i3: Debian and Ubuntu repositories diff --git a/docs/testsuite.html b/docs/testsuite.html index 06d1794..ca7b75f 100644 --- a/docs/testsuite.html +++ b/docs/testsuite.html @@ -4,13 +4,13 @@ - + i3: i3 testsuite diff --git a/docs/tshirts.html b/docs/tshirts.html index adf7546..d5cc62b 100644 --- a/docs/tshirts.html +++ b/docs/tshirts.html @@ -4,13 +4,13 @@ - + i3: i3wm T-shirts diff --git a/docs/userguide.html b/docs/userguide.html index 004d8de..5be471b 100644 --- a/docs/userguide.html +++ b/docs/userguide.html @@ -4,13 +4,13 @@ - + i3: i3 User’s Guide diff --git a/docs/wsbar.html b/docs/wsbar.html index 1a05882..a50da7f 100644 --- a/docs/wsbar.html +++ b/docs/wsbar.html @@ -4,13 +4,13 @@ - + i3: External workspace bars -- 2.39.5