diff options
author | Tucker Evans <tuckerevans24@gmail.com> | 2018-03-07 20:28:31 -0500 |
---|---|---|
committer | Tucker Evans <tuckerevans24@gmail.com> | 2018-03-07 20:28:31 -0500 |
commit | d2caf851eac8284d134f5a440b65a492dd08039f (patch) | |
tree | 97a4bb91e3e950744bd7f6c251fae6eabd5b87ad /i3/.config/i3status/config | |
parent | d90cb0cd930cc98be41fdca08fbd2a56871989c8 (diff) |
Makes minor changes to X, bash, i3, and tmux
Diffstat (limited to 'i3/.config/i3status/config')
-rw-r--r-- | i3/.config/i3status/config | 40 |
1 files changed, 27 insertions, 13 deletions
diff --git a/i3/.config/i3status/config b/i3/.config/i3status/config index a291ae3..36062e3 100644 --- a/i3/.config/i3status/config +++ b/i3/.config/i3status/config @@ -7,10 +7,9 @@ # If the above line is not correctly displayed, fix your editor first! general { - colors = true - interval = 5 -#color_good = "#5294E2" -# color_bad = "#CC575D" + colors = true + interval = 5 + output_format = i3bar } order += "ipv6" @@ -20,33 +19,48 @@ order += "ethernet _first_" order += "volume master" order += "battery all" order += "load" +order += "cpu_temperature 0" order += "tztime local" +order += "tztime utc" + +ipv6 { + format_up = "%ip" + format_down = "" +} wireless _first_ { - format_up = "W: (%quality at %essid) %ip" - format_down = "W: down" + format_up = "W:%quality %ip" + format_down = "W: down" } ethernet _first_ { - # if you use %speed, i3status requires root privileges - format_up = "E: %ip (%speed)" - format_down = "E: down" + # if you use %speed, i3status requires root privileges + format_up = "E: %ip %speed" + format_down = "E: down" } battery all { - format = "%status %percentage %remaining" + format = "%status %percentage" +} +tztime utc { + format = "UTC: %H:%M" + timezone = "Etc/UTC" } tztime local { - format = "%Y-%m-%d %H:%M:%S" + format = "EST: %Y-%m-%d %H:%M:%S" } load { - format = "%1min" + format = "%1min" +} +cpu_temperature 0 { + format = "%degrees C" + path ="/sys/devices/platform/coretemp.0/hwmon/hwmon1/temp1_input" } disk "/" { - format = "%avail" + format = "%avail" } volume master { |