diff options
| author | Jeff Carr <[email protected]> | 2024-01-07 07:09:59 -0600 |
|---|---|---|
| committer | Jeff Carr <[email protected]> | 2024-01-07 07:09:59 -0600 |
| commit | 807b3be94f4be4b1aeea48695474aca1bfef4ab2 (patch) | |
| tree | 5af8e1b94ebbe5bb7148848aa926ab74f1ab2793 /linuxstatus/net.go | |
| parent | 930bdc941b1181460f4c38dc708dc53d583ab5d3 (diff) | |
window titles update to correct values
Signed-off-by: Jeff Carr <[email protected]>
Diffstat (limited to 'linuxstatus/net.go')
| -rw-r--r-- | linuxstatus/net.go | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/linuxstatus/net.go b/linuxstatus/net.go index 2926946..7170765 100644 --- a/linuxstatus/net.go +++ b/linuxstatus/net.go @@ -269,3 +269,10 @@ func deleteChanges() bool { return changed } + +func (ls *LinuxStatus) GetIPv4() []string { + if ! me.Ready() {return nil} + tmp := "(none) fixme" + return strings.Split(tmp, "\n") +} + |
