diff options
author | Silvio Rhatto <rhatto@riseup.net> | 2017-12-06 10:59:27 -0200 |
---|---|---|
committer | Silvio Rhatto <rhatto@riseup.net> | 2017-12-06 10:59:27 -0200 |
commit | 2b8fe26ca1b93bf97eb8e3140c289b49eb400f60 (patch) | |
tree | 84ffa6010d434ea85ed8af905619669aaf286dda | |
parent | 21b947cce1ee5fe9eea921c155583d08d4528eee (diff) | |
download | i3-2b8fe26ca1b93bf97eb8e3140c289b49eb400f60.tar.gz i3-2b8fe26ca1b93bf97eb8e3140c289b49eb400f60.tar.bz2 |
Adds i3status
-rw-r--r-- | i3.dot.link/i3status.conf | 40 |
1 files changed, 40 insertions, 0 deletions
diff --git a/i3.dot.link/i3status.conf b/i3.dot.link/i3status.conf new file mode 100644 index 0000000..2b44e26 --- /dev/null +++ b/i3.dot.link/i3status.conf @@ -0,0 +1,40 @@ +# i3status configuration file. +# see "man i3status" for documentation. +# thanks https://github.com/tunnelshade/awesome-dots + +# It is important that this file is edited as UTF-8. +# The following line should contain a sharp s: +# ß +# If the above line is not correctly displayed, fix your editor first! + +general { + colors = true + interval = 5 +} + +order += "run_watch VPN" +order += "cpu_usage" +order += "cpu_temperature 0" +order += "battery 0" +order += "tztime local" + +#cpu_temperature 0 { +# format = " T: %degrees °C " +# path = "/sys/devices/platform/coretemp.0/temp1_input" +#} + +battery 0 { + format = " %status %percentage %remaining " +} + +run_watch VPN { + pidfile = "/var/run/vpnc/pid" +} + +#tztime local { +# format = " %Y-%m-%d %H:%M:%S " +#} + +#cpu_usage { +# format = " %usage " +#} |