about summary refs log tree commit diff
path: root/configs/shared/misc/.config/i3status/config
diff options
context:
space:
mode:
authorWilliam Carroll <wpcarro@gmail.com>2019-03-27T18·19+0000
committerWilliam Carroll <wpcarro@gmail.com>2019-03-27T18·21+0000
commit161a09e6dff96915ba4f9932b6e31a23b3bd492e (patch)
tree8bdd928d091c62de4284efec8d754cb5f4386b32 /configs/shared/misc/.config/i3status/config
parent01ff37824ddd077c3a1498c07609eb44e90278a7 (diff)
Adjust i3 colors, update KBDs, remove icons from i3statusbar
May need to find a better KBD for `snip_it`, since I really enjoy Tmux's M-s to
switch sessions.

Learned about i3's "edge" concept. Re-supported KBDs for settings split
directions. Also adjusted theme colors.

Also adjusts the formatting of the timezone information to show GMT as LON, EST
as NYC, and Pacific as MTV.
Diffstat (limited to 'configs/shared/misc/.config/i3status/config')
-rw-r--r--configs/shared/misc/.config/i3status/config17
1 files changed, 11 insertions, 6 deletions
diff --git a/configs/shared/misc/.config/i3status/config b/configs/shared/misc/.config/i3status/config
index 9df0af323846..37f6678ce854 100644
--- a/configs/shared/misc/.config/i3status/config
+++ b/configs/shared/misc/.config/i3status/config
@@ -4,26 +4,31 @@ general {
         colors = true
 }
 
-order += "time"
+order += "tztime lon"
 order += "tztime est"
 order += "tztime pst"
 order += "disk /"
 
 disk "/" {
      prefix_type = "decimal"
-     format = "%avail / %total"
+     format = "%used/%total"
 }
 
-time {
-     format = "%H:%M - %D"
+# Useful commands for dealing with timezones:
+# - cat /etc/timezone
+# - man date
+# - timedatectl
+tztime lon {
+     format = "LON %H:%M"
+     timezone = "Europe/London"
 }
 
 tztime est {
-     format = "%H:%M EST"
+     format = "NYC %H:%M"
      timezone = "US/Eastern"
 }
 
 tztime pst {
-     format = "%H:%M PST"
+     format = "MTV %H:%M"
      timezone = "US/Pacific"
 }
\ No newline at end of file