summaryrefslogtreecommitdiffstats
path: root/widgets
diff options
context:
space:
mode:
authorSean E. Russell <ser@ser1.net>2020-02-28 14:48:35 -0600
committerSean E. Russell <ser@ser1.net>2020-02-28 14:48:35 -0600
commitafb62afcdfe510c7db07cb384d00c8e0fb64519d (patch)
tree7e2a47c2356ed028bf75417fc2157218435475db /widgets
parentc6af0ab404e54713f7b4039eaf9a0f21340cb00b (diff)
Path changes for major revisionv3.4.0
Diffstat (limited to 'widgets')
-rw-r--r--widgets/battery.go2
-rw-r--r--widgets/batterygauge.go2
-rw-r--r--widgets/cpu.go4
-rw-r--r--widgets/disk.go4
-rw-r--r--widgets/mem.go6
-rw-r--r--widgets/net.go4
-rw-r--r--widgets/proc.go4
-rw-r--r--widgets/proc_freebsd.go2
-rw-r--r--widgets/proc_other.go2
-rw-r--r--widgets/temp.go4
10 files changed, 17 insertions, 17 deletions
diff --git a/widgets/battery.go b/widgets/battery.go
index b47cac4..c283c26 100644
--- a/widgets/battery.go
+++ b/widgets/battery.go
@@ -10,7 +10,7 @@ import (
"github.com/distatus/battery"
"github.com/prometheus/client_golang/prometheus"
- ui "github.com/xxxserxxx/gotop/termui"
+ ui "github.com/xxxserxxx/gotop/v3/termui"
)
type BatteryWidget struct {
diff --git a/widgets/batterygauge.go b/widgets/batterygauge.go
index 59accfb..534c1cf 100644
--- a/widgets/batterygauge.go
+++ b/widgets/batterygauge.go
@@ -9,7 +9,7 @@ import (
"github.com/distatus/battery"
"github.com/prometheus/client_golang/prometheus"
- . "github.com/xxxserxxx/gotop/termui"
+ . "github.com/xxxserxxx/gotop/v3/termui"
)
type BatteryGauge struct {
diff --git a/widgets/cpu.go b/widgets/cpu.go
index 53f5529..5a352ba 100644
--- a/widgets/cpu.go
+++ b/widgets/cpu.go
@@ -7,9 +7,9 @@ import (
"time"
"github.com/prometheus/client_golang/prometheus"
- "github.com/xxxserxxx/gotop/devices"
+ "github.com/xxxserxxx/gotop/v3/devices"
- ui "github.com/xxxserxxx/gotop/termui"
+ ui "github.com/xxxserxxx/gotop/v3/termui"
)
type CpuWidget struct {
diff --git a/widgets/disk.go b/widgets/disk.go
index d1da7a6..3235a6e 100644
--- a/widgets/disk.go
+++ b/widgets/disk.go
@@ -10,8 +10,8 @@ import (
"github.com/prometheus/client_golang/prometheus"
psDisk "github.com/shirou/gopsutil/disk"
- ui "github.com/xxxserxxx/gotop/termui"
- "github.com/xxxserxxx/gotop/utils"
+ ui "github.com/xxxserxxx/gotop/v3/termui"
+ "github.com/xxxserxxx/gotop/v3/utils"
)
type Partition struct {
diff --git a/widgets/mem.go b/widgets/mem.go
index b80b68c..1cfa5c2 100644
--- a/widgets/mem.go
+++ b/widgets/mem.go
@@ -7,9 +7,9 @@ import (
"github.com/prometheus/client_golang/prometheus"
- "github.com/xxxserxxx/gotop/devices"
- ui "github.com/xxxserxxx/gotop/termui"
- "github.com/xxxserxxx/gotop/utils"
+ "github.com/xxxserxxx/gotop/v3/devices"
+ ui "github.com/xxxserxxx/gotop/v3/termui"
+ "github.com/xxxserxxx/gotop/v3/utils"
)
type MemWidget struct {
diff --git a/widgets/net.go b/widgets/net.go
index 1326fdc..3f03936 100644
--- a/widgets/net.go
+++ b/widgets/net.go
@@ -9,8 +9,8 @@ import (
"github.com/prometheus/client_golang/prometheus"
psNet "github.com/shirou/gopsutil/net"
- ui "github.com/xxxserxxx/gotop/termui"
- "github.com/xxxserxxx/gotop/utils"
+ ui "github.com/xxxserxxx/gotop/v3/termui"
+ "github.com/xxxserxxx/gotop/v3/utils"
)
const (
diff --git a/widgets/proc.go b/widgets/proc.go
index e4a8ace..406a095 100644
--- a/widgets/proc.go
+++ b/widgets/proc.go
@@ -12,8 +12,8 @@ import (
psCPU "github.com/shirou/gopsutil/cpu"
tui "github.com/gizak/termui/v3"
- ui "github.com/xxxserxxx/gotop/termui"
- "github.com/xxxserxxx/gotop/utils"
+ ui "github.com/xxxserxxx/gotop/v3/termui"
+ "github.com/xxxserxxx/gotop/v3/utils"
)
const (
diff --git a/widgets/proc_freebsd.go b/widgets/proc_freebsd.go
index ac3e73f..f703c03 100644
--- a/widgets/proc_freebsd.go
+++ b/widgets/proc_freebsd.go
@@ -8,7 +8,7 @@ import (
"strconv"
"strings"
- "github.com/xxxserxxx/gotop/utils"
+ "github.com/xxxserxxx/gotop/v3/utils"
)
type processList struct {
diff --git a/widgets/proc_other.go b/widgets/proc_other.go
index 09aac28..d2a313f 100644
--- a/widgets/proc_other.go
+++ b/widgets/proc_other.go
@@ -9,7 +9,7 @@ import (
"strconv"
"strings"
- "github.com/xxxserxxx/gotop/utils"
+ "github.com/xxxserxxx/gotop/v3/utils"
)
const (
diff --git a/widgets/temp.go b/widgets/temp.go
index a01853e..1b9f650 100644
--- a/widgets/temp.go
+++ b/widgets/temp.go
@@ -9,8 +9,8 @@ import (
ui "github.com/gizak/termui/v3"
"github.com/prometheus/client_golang/prometheus"
- "github.com/xxxserxxx/gotop/devices"
- "github.com/xxxserxxx/gotop/utils"
+ "github.com/xxxserxxx/gotop/v3/devices"
+ "github.com/xxxserxxx/gotop/v3/utils"
)
type TempScale rune