diff options
-rw-r--r-- | i3/.config/i3status/config | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/i3/.config/i3status/config b/i3/.config/i3status/config index 86504f1..ea3a0eb 100644 --- a/i3/.config/i3status/config +++ b/i3/.config/i3status/config @@ -9,6 +9,16 @@ ethernet _first_ { format_down = "" } +ethernet wg0 { + format_up = "wg0 %ip" + format_down = "" +} + +ethernet wg1 { + format_up = "wg1 %ip" + format_down = "" +} + wireless _first_ { format_up = "%essid %ip" format_down = "" @@ -46,6 +56,8 @@ disk "/" { threshold_type = percentage_free } +order += "ethernet wg0" +order += "ethernet wg1" order += "ethernet _first_" order += "wireless _first_" order += "disk /" |