diff options
author | Cullum Smith <cullum@sacredheartsc.com> | 2024-08-03 08:23:27 -0400 |
---|---|---|
committer | Cullum Smith <cullum@sacredheartsc.com> | 2024-08-03 08:23:27 -0400 |
commit | ffeca1d93b86ddcd150bbdfc3592ff9b64015423 (patch) | |
tree | 2ecd8c592a19cb0206a104c8209a27ca2624979c /i3/.config | |
parent | 3bad8f5d64170ab0ed582a37838e120bec87fb90 (diff) | |
download | dotfiles-ffeca1d93b86ddcd150bbdfc3592ff9b64015423.tar.gz |
add wg interfaces to i3status
Diffstat (limited to 'i3/.config')
-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 /" |